homebrew-cask/Casks/ransomwhere.rb

23 lines
957 B
Ruby

cask 'ransomwhere' do
version '1.1.0'
sha256 '7b18e17abd8fb40d7c25f29f65d64a1f65c758d61c9f67c11d9722d1d7486ea9'
# bitbucket.org/objective-see was verified as official when first introduced to the cask
url "https://bitbucket.org/objective-see/deploy/downloads/RansomWhere_#{version}.zip"
name 'RansomWhere'
homepage 'https://objective-see.com/products/ransomwhere.html'
license :unknown # TODO: change license and remove this comment; ':unknown' is a machine-generated placeholder
installer script: {
executable: "#{staged_path}/RansomWhere.app/Contents/MacOS/RansomWhere",
args: ['-install'],
sudo: true,
}
uninstall script: {
executable: "#{staged_path}/RansomWhere.app/Contents/MacOS/RansomWhere",
args: ['-uninstall'],
sudo: true,
}
end