mirror of
https://github.com/wavetermdev/homebrew-cask.git
synced 2026-08-05 13:43:24 -07:00
27 lines
775 B
Ruby
27 lines
775 B
Ruby
cask "acorn" do
|
|
version "7.4.3"
|
|
sha256 "7575076e77e2a832911bd027c6b3e632a89e10c181a1f5a1af133c75a500f3ca"
|
|
|
|
url "https://flyingmeat.com/download/Acorn-#{version}.zip"
|
|
name "Acorn"
|
|
desc "Image editor focused on simplicity"
|
|
homepage "https://flyingmeat.com/acorn/"
|
|
|
|
livecheck do
|
|
url "https://www.flyingmeat.com/download/acorn#{version.major}update.xml"
|
|
strategy :sparkle, &:short_version
|
|
end
|
|
|
|
auto_updates true
|
|
depends_on macos: ">= :mojave"
|
|
|
|
app "Acorn.app"
|
|
|
|
zap trash: [
|
|
"~/Library/Application Support/Acorn",
|
|
"~/Library/Caches/com.flyingmeat.Acorn#{version.major}",
|
|
"~/Library/Preferences/com.flyingmeat.Acorn#{version.major}.plist",
|
|
"~/Library/Saved Application State/com.flyingmeat.Acorn#{version.major}.savedState",
|
|
]
|
|
end
|