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.
27 lines
564 B
Ruby
27 lines
564 B
Ruby
cask "lazy" do
|
|
version "1.0"
|
|
sha256 :no_check
|
|
|
|
url "https://www.lazy-app.com/download/lazy.pkg"
|
|
name "Lazy"
|
|
desc "Control your environment from your keyboard"
|
|
homepage "https://www.lazy-app.com/"
|
|
|
|
livecheck do
|
|
url :url
|
|
strategy :extract_plist do |items|
|
|
items["com.ahmedmen.Bob"].short_version
|
|
end
|
|
end
|
|
|
|
pkg "lazy.pkg"
|
|
|
|
uninstall quit: "com.ahmedmen.Bob",
|
|
pkgutil: "com.lazy.pkg.lazy-app"
|
|
|
|
zap trash: [
|
|
"~/Library/Application Scripts/com.ahmedmen.Bob",
|
|
"~/Library/Containers/com.ahmedmen.Bob",
|
|
]
|
|
end
|