Skip to content

Commit

Permalink
Merge pull request #174459 from Homebrew/little-snitch-v5
Browse files Browse the repository at this point in the history
  • Loading branch information
p-linnane authored May 21, 2024
2 parents c541a0d + 201496c commit 6597574
Showing 1 changed file with 59 additions and 0 deletions.
59 changes: 59 additions & 0 deletions Casks/l/[email protected]
Original file line number Diff line number Diff line change
@@ -0,0 +1,59 @@
cask "little-snitch@5" do
version "5.7.6"
sha256 "f0a9905f0f4222273febf4f1ae1a330770a064b7454583bd48e8152cc4bb30f8"

url "https://www.obdev.at/downloads/littlesnitch/legacy/LittleSnitch-#{version}.dmg"
name "Little Snitch"
desc "Host-based application firewall"
homepage "https://www.obdev.at/products/littlesnitch/index.html"

livecheck do
url "https://sw-update.obdev.at/update-feeds/littlesnitch#{version.major}.plist"
regex(/LittleSnitch[._-]v?(\d+(?:\.\d+)+)\.dmg/)
strategy :xml do |xml, regex|
xml.get_elements("//key[text()='DownloadURL']").map do |item|
match = item.next_element&.text&.match(regex)
next if match.blank?

match[1]
end
end
end

auto_updates true
conflicts_with cask: [
"little-snitch",
"little-snitch@4",
]
depends_on macos: ">= :big_sur"

app "Little Snitch.app"

zap trash: [
"/Library/Application Support/Objective Development/Little Snitch",
"/Library/Caches/at.obdev.LittleSnitchConfiguration",
"/Library/Extensions/LittleSnitch.kext",
"/Library/Little Snitch",
"/Library/Logs/LittleSnitchDaemon.log",
"/Library/StagedExtensions/Library/Extensions/LittleSnitch.kext",
"~/Library/Application Support/Little Snitch",
"~/Library/Caches/at.obdev.LittleSnitchAgent",
"~/Library/Caches/at.obdev.LittleSnitchConfiguration",
"~/Library/Caches/at.obdev.LittleSnitchHelper",
"~/Library/Caches/at.obdev.LittleSnitchSoftwareUpdate",
"~/Library/Caches/com.apple.helpd/Generated/at.obdev.LittleSnitchConfiguration.help*",
"~/Library/Caches/com.apple.helpd/SDMHelpData/Other/English/HelpSDMIndexFile/at.obdev.LittleSnitchConfiguration.help*",
"~/Library/Logs/Little Snitch Agent.log",
"~/Library/Logs/Little Snitch Helper.log",
"~/Library/Logs/Little Snitch Installer.log",
"~/Library/Logs/Little Snitch Network Monitor.log",
"~/Library/Preferences/at.obdev.LittleSnitchAgent.plist",
"~/Library/Preferences/at.obdev.LittleSnitchConfiguration.plist",
"~/Library/Preferences/at.obdev.LittleSnitchInstaller.plist",
"~/Library/Preferences/at.obdev.LittleSnitchNetworkMonitor.plist",
"~/Library/Preferences/at.obdev.LittleSnitchSoftwareUpdate.plist",
"~/Library/Saved Application State/at.obdev.LittleSnitchInstaller.savedState",
"~/Library/WebKit/at.obdev.LittleSnitchConfiguration",
],
rmdir: "/Library/Application Support/Objective Development"
end

0 comments on commit 6597574

Please sign in to comment.