forked from Homebrew/homebrew-cask
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathacorn.rb
25 lines (20 loc) · 744 Bytes
/
acorn.rb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
cask "acorn" do
version "7.0.3,15840"
sha256 "97e5c4ce23244db1362816d6ad3045caf0b8daa5b37e984d503863a38fa7a962"
url "https://flyingmeat.com/download/Acorn-#{version.before_comma}.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
end
auto_updates true
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