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.
20 lines
557 B
Ruby
20 lines
557 B
Ruby
cask "beardie" do
|
|
version "3.0.24.84.Release"
|
|
sha256 "d4361bc06beab9e868b746695506656603febe02c32539ffc15a5a7b642425dd"
|
|
|
|
url "https://github.com/Stillness-2/beardie/releases/download/v#{version}/Beardie.app.zip"
|
|
name "Beardie"
|
|
desc "Control various media players with your keyboard"
|
|
homepage "https://github.com/Stillness-2/beardie"
|
|
|
|
auto_updates true
|
|
depends_on macos: ">= :catalina"
|
|
|
|
app "Beardie.app"
|
|
|
|
zap trash: [
|
|
"~/Library/Caches/com.calm-apps.mac.beardie",
|
|
"~/Library/Preferences/com.calm-apps.mac.beardie.plist",
|
|
]
|
|
end
|