-
-
Notifications
You must be signed in to change notification settings - Fork 10.7k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #174459 from Homebrew/little-snitch-v5
- Loading branch information
Showing
1 changed file
with
59 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |