-
-
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.
- Loading branch information
Showing
1 changed file
with
12 additions
and
10 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 |
---|---|---|
@@ -1,24 +1,26 @@ | ||
cask "privileges" do | ||
Check failure on line 1 in Casks/p/privileges.rb GitHub Actions / test privileges (macos-13, intel)
Check failure on line 1 in Casks/p/privileges.rb GitHub Actions / test privileges (macos-13, intel)
Check failure on line 1 in Casks/p/privileges.rb GitHub Actions / test privileges (macos-15, arm)
|
||
version "1.5.4" | ||
sha256 "6f16af136a928a9e0c233ef7d36db4458588224e676b079ede1b626c8ddba346" | ||
version "2.0.0" | ||
sha256 "99cf00557e4965ed949a41665d22211d778ae0b8601e9647970c38e2c48b866f" | ||
|
||
url "https://github.com/SAP/macOS-enterprise-privileges/releases/download/#{version}/Privileges.zip" | ||
url "https://github.com/SAP/macOS-enterprise-privileges/releases/download/#{version}/Privileges_#{version}.pkg" | ||
name "Privileges" | ||
desc "Admin rights switcher" | ||
homepage "https://github.com/SAP/macOS-enterprise-privileges" | ||
|
||
depends_on macos: ">= :sierra" | ||
depends_on macos: ">= :big_sur" | ||
|
||
app "Privileges.app" | ||
binary "#{appdir}/Privileges.app/Contents/Resources/PrivilegesCLI", target: "privileges-cli" | ||
pkg "Privileges_#{version}.pkg" | ||
binary "#{appdir}/Privileges.app/Contents/MacOS/PrivilegesCLI", target: "privileges-cli" | ||
|
||
uninstall delete: [ | ||
"/Library/LaunchDaemons/corp.sap.privileges.helper.plist", | ||
"/Library/PrivilegedHelperTools/corp.sap.privileges.helper", | ||
] | ||
uninstall launchctl: [ | ||
"corp.sap.privileges.agent", | ||
"corp.sap.privileges.daemon", | ||
], | ||
pkgutil: "corp.sap.privileges.pkg" | ||
|
||
zap trash: [ | ||
"~/Library/Application Scripts/corp.sap.privileges", | ||
"~/Library/Containers/corp.sap.privileges", | ||
"~/Library/Group Containers/*.corp.sap.privileges", | ||
] | ||
end |