mirror of
https://github.com/donl/homebrew-cask-versions.git
synced 2026-07-16 22:06:43 -06:00
18 lines
524 B
Ruby
18 lines
524 B
Ruby
cask :v1 => 'td-toolbelt' do
|
|
version :latest
|
|
sha256 :no_check
|
|
|
|
url 'http://toolbelt.treasuredata.com/mac'
|
|
homepage 'http://toolbelt.treasuredata.com/'
|
|
license :unknown # todo: change license and remove this comment; ':unknown' is a machine-generated placeholder
|
|
|
|
container :type => :naked
|
|
preflight do
|
|
system '/bin/mv', '--', "#{staged_path}/mac", "#{staged_path}/td-toolbelt.pkg"
|
|
end
|
|
|
|
pkg 'td-toolbelt.pkg'
|
|
|
|
uninstall :pkgutil => 'com.td.toolbelt'
|
|
zap :pkgutil => 'org.ruby-lang.installer'
|
|
end
|