forked from kitlangton/Hex
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathhex.rb
More file actions
27 lines (22 loc) · 671 Bytes
/
hex.rb
File metadata and controls
27 lines (22 loc) · 671 Bytes
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
cask "hex" do
version "0.2.11"
sha256 :no_check # Will be filled after first release
url "https://github.com/kitlangton/hex/releases/download/v#{version}/Hex-v#{version}.zip"
name "Hex"
desc "On-device voice-to-text for macOS"
homepage "https://github.com/kitlangton/hex"
livecheck do
url :url
strategy :github_latest
end
auto_updates true
depends_on macos: ">= :sequoia"
depends_on arch: :arm64
app "Hex.app"
zap trash: [
"~/Library/Application Support/com.kitlangton.Hex",
"~/Library/Caches/com.kitlangton.Hex",
"~/Library/Containers/com.kitlangton.Hex",
"~/Library/Preferences/com.kitlangton.Hex.plist",
]
end