Files
Mike McQuaid aa461148bb Move all remaining casks to sharded subdirectories.
The migration of `orka.rb` and then `o*.rb` has worked well without
complaint so: let's move everything else, too.
2023-08-09 12:08:38 +01:00

27 lines
651 B
Ruby

cask "boop" do
version "1.4.0"
sha256 "8c4492baf6d5b1d26d157877f53d063259e615d784e8ab4d046d3ee67fb9b345"
url "https://github.com/IvanMathy/Boop/releases/download/#{version}/Boop.zip",
verified: "github.com/IvanMathy/Boop/"
name "Boop"
desc "Scriptable scratchpad for developers"
homepage "https://boop.okat.best/"
livecheck do
url "https://boop.okat.best/version.json"
strategy :json do |json|
json["standalone"]["version"]
end
end
depends_on macos: ">= :mojave"
app "Boop.app"
zap trash: [
"~/Library/Application Scripts/com.okatbest.boop",
"~/Library/Containers/com.okatbest.boop",
]
end