You've already forked homebrew-cask
mirror of
https://github.com/wavetermdev/homebrew-cask.git
synced 2026-04-22 15:25:17 -07:00
29 lines
1.1 KiB
Ruby
29 lines
1.1 KiB
Ruby
cask "whatsyoursign" do
|
|
version "2.2.2"
|
|
sha256 "0359af12087997ce205d86c5ffe752084502c5896b474d4ae556da8e7147468e"
|
|
|
|
url "https://github.com/objective-see/WhatsYourSign/releases/download/v#{version}/WhatsYourSign_#{version}.zip",
|
|
verified: "github.com/objective-see/"
|
|
name "What's Your Sign?"
|
|
desc "Shows a files cryptographic signing information"
|
|
homepage "https://objective-see.com/products/whatsyoursign.html"
|
|
|
|
installer manual: "WhatsYourSign Installer.app"
|
|
|
|
uninstall script: {
|
|
executable: "/usr/bin/pluginkit",
|
|
args: [
|
|
"-r",
|
|
"/Applications/WhatsYourSign.app/Contents/PlugIns/WhatsYourSign.appex",
|
|
],
|
|
must_succeed: false,
|
|
},
|
|
delete: [
|
|
"/Applications/WhatsYourSign.app",
|
|
"~/Library/Application Scripts/com.objective-see.WhatsYourSignExt.FinderSync",
|
|
"~/Library/Containers/com.objective-see.WhatsYourSignExt.FinderSync",
|
|
]
|
|
|
|
zap trash: "~/Library/Saved Application State/com.objective-see.WhatsYourSign.savedState"
|
|
end
|