mirror of
https://github.com/wavetermdev/homebrew-cask.git
synced 2026-08-05 13:43:24 -07:00
The migration of `orka.rb` and then `o*.rb` has worked well without complaint so: let's move everything else, too.
25 lines
813 B
Ruby
25 lines
813 B
Ruby
cask "do-not-disturb" do
|
|
version "1.3.0"
|
|
sha256 "000e3ce8f5abd1313bbb603c401a1be0b5cf4f11644d36f1d5d382745079fdc3"
|
|
|
|
url "https://bitbucket.org/objective-see/deploy/downloads/DoNotDisturb_#{version}.zip",
|
|
verified: "bitbucket.org/objective-see/"
|
|
name "Do Not Disturb"
|
|
desc "Open-source physical access (aka 'evil maid') attack detector"
|
|
homepage "https://objective-see.com/products/dnd.html"
|
|
|
|
depends_on macos: ">= :sierra"
|
|
|
|
installer script: {
|
|
executable: "#{staged_path}/Do Not Disturb Installer.app/Contents/MacOS/Do Not Disturb Installer",
|
|
args: ["-install"],
|
|
sudo: true,
|
|
}
|
|
|
|
uninstall script: {
|
|
executable: "#{staged_path}/Do Not Disturb Installer.app/Contents/MacOS/Do Not Disturb Installer",
|
|
args: ["-uninstall"],
|
|
sudo: true,
|
|
}
|
|
end
|