mirror of
https://github.com/wavetermdev/homebrew-cask.git
synced 2026-08-05 13:43:24 -07:00
26 lines
602 B
Ruby
26 lines
602 B
Ruby
cask "netspot" do
|
|
version "3.0.3228"
|
|
sha256 :no_check
|
|
|
|
url "https://cdn.netspotapp.com/download/NetSpot.dmg"
|
|
name "NetSpot"
|
|
desc "WiFi site survey software and WiFi scanner"
|
|
homepage "https://www.netspotapp.com/"
|
|
|
|
livecheck do
|
|
url "https://cdn.netspotapp.com/download/Mac/netspot#{version.major}-appcast.xml"
|
|
strategy :sparkle
|
|
end
|
|
|
|
auto_updates true
|
|
depends_on macos: ">= :sierra"
|
|
|
|
app "NetSpot.app"
|
|
|
|
zap trash: [
|
|
"~/Library/Application Support/NetSpot",
|
|
"~/Library/Caches/com.etwok.netspotwifi",
|
|
"~/Library/Preferences/com.etwok.netspotwifi.plist",
|
|
]
|
|
end
|