Browse Source
`md5`, `sha1`, `sha256` all take a hexdigest string, e.g: sha1 'f645e9da45a621415a07a7492c45923b1a1fd4d4' `no_checksum` takes no argument, and indicates there is no checksum for this cask. This is *not recommended*, and should only be used for casks that have no versioned downloads. `brew cask install` will complain if there is no sum provided (unless `no_checksum` has been invoked), or if the sums do not match. It will provide the computed checksum so the cask can be easily amended. Adapted from @passcod's work in 82cc199ae6bbb1e98950e71a0573ab48e6a641ee
phinze
12 years ago
117 changed files with 230 additions and 18 deletions
@ -1,6 +1,7 @@ |
|||||
class Gephi < Cask |
class Gephi < Cask |
||||
|
url 'https://launchpad.net/gephi/0.8/0.8.1beta/+download/gephi-0.8.1-beta.dmg' |
||||
homepage 'http://gephi.org/' |
homepage 'http://gephi.org/' |
||||
version '0.8.1' |
version '0.8.1' |
||||
url 'https://launchpad.net/gephi/0.8/0.8.1beta/+download/gephi-0.8.1-beta.dmg' |
|
||||
content_length '39116463' |
content_length '39116463' |
||||
|
sha1 '0bd1d9d5b1da69b77217949b788597a952cbd846' |
||||
end |
end |
||||
|
@ -1,6 +1,7 @@ |
|||||
class Inkscape < Cask |
class Inkscape < Cask |
||||
homepage 'http://inkscape.org' |
homepage 'http://inkscape.org' |
||||
url 'http://downloads.sourceforge.net/inkscape/Inkscape-0.48.2-1-SNOWLEOPARD.dmg' |
url 'http://downloads.sourceforge.net/inkscape/Inkscape-0.48.2-1-SNOWLEOPARD.dmg' |
||||
version '0.48.2-1' |
|
||||
content_length '87079397' |
content_length '87079397' |
||||
|
version '0.48.2-1' |
||||
|
sha1 '20073844e26dc787da04d951e3a24338758e5e8d' |
||||
end |
end |
||||
|
@ -1,5 +1,6 @@ |
|||||
class Iterm2 < Cask |
class Iterm2 < Cask |
||||
url 'http://iterm2.googlecode.com/files/iTerm2-1_0_0_20120203.zip' |
url 'http://iterm2.googlecode.com/files/iTerm2-1_0_0_20120203.zip' |
||||
version '1.0.0.20120203' |
|
||||
homepage 'http://www.iterm2.com/' |
homepage 'http://www.iterm2.com/' |
||||
|
version '1.0.0.20120203' |
||||
|
sha1 '554d2f9b9fbd7d4930f3a9b6962264bc026237c9' |
||||
end |
end |
||||
|
@ -1,6 +1,7 @@ |
|||||
class Ripit < Cask |
class Ripit < Cask |
||||
url 'http://files.thelittleappfactory.com/ripit/RipIt.zip' |
url 'http://files.thelittleappfactory.com/ripit/RipIt.zip' |
||||
version 'latest' |
|
||||
homepage 'http://thelittleappfactory.com/ripit/' |
homepage 'http://thelittleappfactory.com/ripit/' |
||||
content_length '8926510' |
content_length '8926510' |
||||
|
version 'latest' |
||||
|
no_checksum |
||||
end |
end |
||||
|
@ -1,6 +1,7 @@ |
|||||
class Rubymine < Cask |
class Rubymine < Cask |
||||
homepage 'http://www.jetbrains.com/ruby/' |
|
||||
url 'http://download.jetbrains.com/ruby/RubyMine-4.5.4.dmg' |
url 'http://download.jetbrains.com/ruby/RubyMine-4.5.4.dmg' |
||||
|
homepage 'http://www.jetbrains.com/ruby/' |
||||
version '4.5.4' |
version '4.5.4' |
||||
content_length '111025727' |
content_length '111025727' |
||||
|
sha1 '3f5d4318207f8e1a661a1055089eed63473bbfb3' |
||||
end |
end |
||||
|
@ -1,6 +1,7 @@ |
|||||
class Tagalicious < Cask |
class Tagalicious < Cask |
||||
url 'http://files.thelittleappfactory.com/tagalicious/Tagalicious.zip' |
url 'http://files.thelittleappfactory.com/tagalicious/Tagalicious.zip' |
||||
version 'latest' |
|
||||
homepage 'http://files.thelittleappfactory.com/ringtones/Ringtones.zip' |
homepage 'http://files.thelittleappfactory.com/ringtones/Ringtones.zip' |
||||
content_length '4685352' |
content_length '4685352' |
||||
|
version 'latest' |
||||
|
no_checksum |
||||
end |
end |
||||
|
@ -1,6 +1,7 @@ |
|||||
class Textwrangler < Cask |
class Textwrangler < Cask |
||||
|
url 'http://ash.barebones.com/TextWrangler_4.0.1.dmg' |
||||
homepage 'http://www.barebones.com/products/textwrangler' |
homepage 'http://www.barebones.com/products/textwrangler' |
||||
version '4.0.1' |
version '4.0.1' |
||||
url 'http://ash.barebones.com/TextWrangler_4.0.1.dmg' |
|
||||
content_length '5419888' |
content_length '5419888' |
||||
|
sha1 '7205c48f94d588682bf82923b579e1674701f218' |
||||
end |
end |
||||
|
Some files were not shown because too many files changed in this diff
Loading…
Reference in new issue