mirror of
https://github.com/donl/homebrew-cask-versions.git
synced 2026-07-17 06:16:47 -06:00
9 lines
399 B
Ruby
9 lines
399 B
Ruby
class WithInstallable < TestCask
|
|
url TestHelper.local_binary('MyFancyPkg.zip')
|
|
homepage 'http://example.com/fancy-pkg'
|
|
version '1.2.3'
|
|
sha256 '8c62a2b791cf5f0da6066a0a4b6e85f62949cd60975da062df44adf887f4370b'
|
|
install 'MyFancyPkg/Fancy.pkg'
|
|
uninstall :script => { :executable => 'MyFancyPkg/FancyUninstaller.tool', :args => %w[--please] },
|
|
:quit => 'my.fancy.package.app'
|
|
end
|