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.
28 lines
663 B
Ruby
28 lines
663 B
Ruby
cask "vuze" do
|
|
version "5.7.7.0"
|
|
sha256 :no_check
|
|
|
|
url "https://cf1.vuze.com/files/J7/VuzeBittorrentClientInstaller.dmg"
|
|
name "Vuze"
|
|
desc "Bit torrent client"
|
|
homepage "https://www.vuze.com/"
|
|
|
|
livecheck do
|
|
skip "version is contained in the mounted DMG volume name"
|
|
end
|
|
|
|
installer script: {
|
|
executable: "Vuze Installer.app/Contents/MacOS/JavaApplicationStub",
|
|
args: ["-q"],
|
|
sudo: true,
|
|
}
|
|
|
|
uninstall delete: [
|
|
"/Applications/Vuze.app",
|
|
"/Applications/Uninstaller for Vuze.app",
|
|
],
|
|
quit: "com.azureus.vuze"
|
|
|
|
zap trash: "~/Library/Application Support/Vuze"
|
|
end
|