Files
homebrew-cask/Casks/z/zenmap.rb
2023-10-07 06:23:22 +08:00

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