mirror of
https://github.com/wavetermdev/homebrew-cask.git
synced 2026-08-05 13:43:24 -07:00
24 lines
624 B
Ruby
24 lines
624 B
Ruby
cask "crystalfetch" do
|
|
version "2.1.0"
|
|
sha256 "a2791be006e92496c2871caeee557950ecba620c6394075071938ce31051459d"
|
|
|
|
url "https://github.com/TuringSoftware/CrystalFetch/releases/download/v#{version}/CrystalFetch.dmg"
|
|
name "Crystalfetch"
|
|
desc "UI for creating Windows installer ISO from UUPDump"
|
|
homepage "https://github.com/TuringSoftware/CrystalFetch"
|
|
|
|
livecheck do
|
|
url :url
|
|
strategy :github_latest
|
|
end
|
|
|
|
depends_on macos: ">= :monterey"
|
|
|
|
app "CrystalFetch.app"
|
|
|
|
zap trash: [
|
|
"~/Library/Application Scripts/llc.turing.CrystalFetch",
|
|
"~/Library/Containers/llc.turing.CrystalFetch",
|
|
]
|
|
end
|