mirror of
https://github.com/wavetermdev/homebrew-cask.git
synced 2026-08-05 13:43:24 -07:00
25 lines
760 B
Ruby
25 lines
760 B
Ruby
cask "texturepacker" do
|
|
version "7.1.0"
|
|
sha256 "35f02c9a23ec604838e7318e9de18dc73635e9f44032580e0ce53084d4267a3f"
|
|
|
|
url "https://www.codeandweb.com/download/texturepacker/#{version}/TexturePacker-#{version}.dmg"
|
|
name "TexturePacker"
|
|
desc "Game sprite sheet packer"
|
|
homepage "https://www.codeandweb.com/texturepacker"
|
|
|
|
livecheck do
|
|
url "https://www.codeandweb.com/releases/TexturePacker/appcast-mac-release.xml"
|
|
strategy :sparkle
|
|
end
|
|
|
|
app "TexturePacker.app"
|
|
|
|
uninstall delete: "/usr/local/bin/TexturePacker"
|
|
|
|
zap trash: [
|
|
"~/Library/Caches/code-and-web.de/TexturePacker",
|
|
"~/Library/Preferences/de.code-and-web.TexturePacker.plist",
|
|
"~/Library/Saved Application State/de.code-and-web.TexturePacker.savedState",
|
|
]
|
|
end
|