-
-
Notifications
You must be signed in to change notification settings - Fork 10.9k
/
Copy pathnoto.rb
31 lines (25 loc) · 984 Bytes
/
noto.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
26
27
28
29
30
31
cask "noto" do
version "1.2"
sha256 "b7fc339543e08374b673e84293bf9819271c8bcc66003ca5c0834bca396949f3"
url "https://www.brunophilipe.com/software/noto/releases/noto-#{version}.dmg"
name "Noto"
desc "Simple plain text editor"
homepage "https://www.brunophilipe.com/software/noto/"
livecheck do
url "https://www.brunophilipe.com/software/noto/updates/appcast.xml"
strategy :sparkle, &:short_version
end
depends_on macos: ">= :sierra"
app "Noto.app"
zap trash: [
"~/Library/Application Support/com.apple.sharedfilelist/com.apple.LSSharedFileList.ApplicationRecentDocuments/com.brunophilipe.noto.sfl*",
"~/Library/Application Support/Noto",
"~/Library/Caches/com.apple.helpd/Generated/com.brunophilipe.Noto.help*",
"~/Library/Caches/com.brunophilipe.Noto",
"~/Library/Preferences/com.brunophilipe.Noto.plist",
"~/Library/Saved Application State/com.brunophilipe.Noto.savedState",
]
caveats do
requires_rosetta
end
end