homebrew-cask/Casks/parse.rb

19 lines
575 B
Ruby
Raw Normal View History

2015-08-03 01:56:14 +08:00
cask :v1_1 => 'parse' do
2014-09-17 19:42:56 +08:00
version :latest
2014-08-15 08:23:25 +08:00
sha256 :no_check
url 'https://parse.com/downloads/cloud_code/cli/parse-osx/latest'
2015-01-12 02:53:36 +08:00
name 'Parse'
2014-08-15 08:23:25 +08:00
homepage 'https://parse.com'
license :unknown # todo: change license and remove this comment; ':unknown' is a machine-generated placeholder
2014-08-15 08:23:25 +08:00
depends_on :formula => 'unar'
container :type => :generic_unar # The downloaded file don't have a .gz suffix, so specifying :gzip here won't work.
binary 'parse-latest', :target => 'parse'
2014-08-15 08:23:25 +08:00
2014-09-09 20:55:27 +08:00
postflight do
set_permissions "#{staged_path}/parse-latest", '0755'
2014-08-15 08:23:25 +08:00
end
end