mirror of
https://github.com/donl/homebrew-cask-versions.git
synced 2026-07-17 06:16:47 -06:00
the sha256 checksum was for the wrong file (it was for prey-0.6.4-mac.dmg, not prey-0.6.4-mac-batch.mpkg.zip). The pull request for the correct sha256 checksum.
17 lines
535 B
Ruby
17 lines
535 B
Ruby
class Prey < Cask
|
|
version '0.6.4'
|
|
sha256 '361996d067539da7881aa3618b737ba4a0846df13ca8c9b8b07151d42f81fb86'
|
|
|
|
url "https://preyproject.com/releases/current/prey-#{version}-mac-batch.mpkg.zip"
|
|
homepage 'https://preyproject.com'
|
|
license :unknown
|
|
|
|
pkg "prey-#{version}-mac-batch.mpkg"
|
|
uninstall :pkgutil => 'com.forkhq.prey'
|
|
caveats <<-EOS.undent
|
|
To complete installation, Prey requires an API key. It may be set
|
|
as an environment variable as follows:
|
|
|
|
API_KEY="abcdef123456" brew cask install prey
|
|
EOS
|
|
end
|