mirror of
https://github.com/wavetermdev/homebrew-cask.git
synced 2026-08-05 13:43:24 -07:00
The migration of `orka.rb` and then `o*.rb` has worked well without complaint so: let's move everything else, too.
24 lines
585 B
Ruby
24 lines
585 B
Ruby
cask "mobirise" do
|
|
version "5.9.0"
|
|
sha256 :no_check
|
|
|
|
url "https://download.mobirise.com/MobiriseSetup.dmg"
|
|
name "Mobirise"
|
|
desc "No-code website creator"
|
|
homepage "https://mobirise.com/"
|
|
|
|
livecheck do
|
|
url "https://mobirise.com/history.html"
|
|
regex(/>\s*Mobirise\s+v?(\d+(?:\.\d+)+)/i)
|
|
end
|
|
|
|
app "Mobirise.app"
|
|
|
|
zap trash: [
|
|
"~/Library/Application Support/Mobirise",
|
|
"~/Library/Application Support/Mobirise.com",
|
|
"~/Library/Preferences/com.mobirise.Mobirise.plist",
|
|
"~/Library/Saved Application State/com.mobirise.Mobirise.savedState",
|
|
]
|
|
end
|