mirror of
https://github.com/wavetermdev/homebrew-cask.git
synced 2026-08-05 13:43:24 -07:00
27 lines
746 B
Ruby
27 lines
746 B
Ruby
cask "bean" do
|
|
version "3.6.2"
|
|
sha256 "0363facdd0f0dc2accaf7d1a6c11abe8a4ff329602c04f27420c5e615bc0c7ca"
|
|
|
|
url "https://www.bean-osx.com/releases/Bean-Install-#{version.dots_to_hyphens}.zip"
|
|
name "Bean"
|
|
desc "Word processor"
|
|
homepage "https://www.bean-osx.com/Bean.html"
|
|
|
|
livecheck do
|
|
url :homepage
|
|
regex(%r{href=.*?/Bean[._-]Install[._-]v?(\d+(?:-\d+)+)\.zip}i)
|
|
strategy :page_match do |page, regex|
|
|
page.scan(regex)&.map { |match| match[0].tr("-", ".") }
|
|
end
|
|
end
|
|
|
|
depends_on macos: ">= :high_sierra"
|
|
|
|
app "Bean-Install-#{version.dots_to_hyphens}/Bean.app"
|
|
|
|
zap trash: [
|
|
"~/Library/Preferences/com.bean-osx.Bean.plist",
|
|
"~/Library/Saved Application State/com.bean-osx.Bean.savedState",
|
|
]
|
|
end
|