mirror of
https://github.com/wavetermdev/homebrew-cask.git
synced 2026-08-05 13:43:24 -07:00
30 lines
940 B
Ruby
30 lines
940 B
Ruby
cask "pritunl" do
|
|
arch arm: ".arm64"
|
|
|
|
version "1.3.3709.64"
|
|
sha256 arm: "20f0212dce7d97fe2703804783f0489222d7f63db4b093fc101d927b6d6cab9d",
|
|
intel: "fb811e75eb2d9a14ff119d5cb1b8e47d885a7d332420299030d90a08e1c6787d"
|
|
|
|
url "https://github.com/pritunl/pritunl-client-electron/releases/download/#{version}/Pritunl#{arch}.pkg.zip",
|
|
verified: "github.com/pritunl/pritunl-client-electron/"
|
|
name "Pritunl"
|
|
desc "OpenVPN client"
|
|
homepage "https://client.pritunl.com/"
|
|
|
|
pkg "Pritunl#{arch}.pkg"
|
|
|
|
uninstall pkgutil: "com.pritunl.pkg.Pritunl",
|
|
launchctl: [
|
|
"com.pritunl.client",
|
|
"com.pritunl.service",
|
|
],
|
|
signal: ["TERM", "com.electron.pritunl"],
|
|
delete: "/Applications/Pritunl.app"
|
|
|
|
zap trash: [
|
|
"~/Library/Application Support/pritunl",
|
|
"~/Library/Caches/pritunl",
|
|
"~/Library/Preferences/com.electron.pritunl*",
|
|
]
|
|
end
|