mirror of
https://github.com/wavetermdev/homebrew-cask.git
synced 2026-08-05 13:43:24 -07:00
33 lines
874 B
Ruby
33 lines
874 B
Ruby
cask "zenmap" do
|
|
version "7.94"
|
|
sha256 "6f84fe22af583c4ff7822e23a5bf8da7cbdfb3fc529867db671aefc44dd23114"
|
|
|
|
url "https://nmap.org/dist/nmap-#{version}.dmg"
|
|
name "Zenmap"
|
|
desc "Multi-platform graphical interface for official Nmap Security Scanner"
|
|
homepage "https://nmap.org/zenmap/"
|
|
|
|
livecheck do
|
|
url "https://nmap.org/dist/?C=M;O=D"
|
|
regex(/href=.*?nmap[._-]v?(\d+(?:\.\d+)+)\.dmg/i)
|
|
end
|
|
|
|
conflicts_with formula: "nmap"
|
|
|
|
pkg "nmap-#{version}.mpkg"
|
|
|
|
uninstall delete: "/Applications/Zenmap.app",
|
|
pkgutil: [
|
|
"org.insecure.nmap",
|
|
"org.insecure.nmap.ncat",
|
|
"org.insecure.nmap.ndiff",
|
|
"org.insecure.nmap.nping",
|
|
"org.insecure.nmap.zenmap",
|
|
]
|
|
|
|
zap trash: [
|
|
"~/Library/Saved Application State/org.insecure.Zenmap.savedState",
|
|
"~/.zenmap",
|
|
]
|
|
end
|