mirror of
https://github.com/wavetermdev/homebrew-cask.git
synced 2026-08-05 13:43:24 -07:00
The migration of `orka.rb` and then `o*.rb` has worked well without complaint so: let's move everything else, too.
24 lines
555 B
Ruby
24 lines
555 B
Ruby
cask "unclack" do
|
|
version "1.2.0"
|
|
sha256 "3f260fea020f4f2ed7ce7b0c9f7a300dd2987aebf7e5b4ba022e3adea6c306a9"
|
|
|
|
url "https://unclack.app/app/#{version}/Unclack.dmg"
|
|
name "Unclack"
|
|
desc "Mutes your keyboard while you type"
|
|
homepage "https://unclack.app/"
|
|
|
|
livecheck do
|
|
url :homepage
|
|
regex(%r{href=.*?/v?(\d+(?:\.\d+)+)/Unclack\.dmg}i)
|
|
end
|
|
|
|
depends_on macos: ">= :catalina"
|
|
|
|
app "Unclack.app"
|
|
|
|
zap trash: [
|
|
"~/Library/Application Scripts/dev.ajkueterman.unclack*",
|
|
"~/Library/Containers/dev.ajkueterman.unclack*",
|
|
]
|
|
end
|