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 |
|||
url 'https://launchpad.net/gephi/0.8/0.8.1beta/+download/gephi-0.8.1-beta.dmg' |
|||
homepage 'http://gephi.org/' |
|||
version '0.8.1' |
|||
url 'https://launchpad.net/gephi/0.8/0.8.1beta/+download/gephi-0.8.1-beta.dmg' |
|||
content_length '39116463' |
|||
sha1 '0bd1d9d5b1da69b77217949b788597a952cbd846' |
|||
end |
|||
|
@ -1,6 +1,7 @@ |
|||
class GoogleChromeCanary < Cask |
|||
url 'https://storage.googleapis.com/chrome-canary/GoogleChromeCanary.dmg' |
|||
url 'https://storage.googleapis.com/chrome-canary/GoogleChromeCanary.dmg' |
|||
homepage 'https://tools.google.com/dlpage/chromesxs' |
|||
version 'latest' |
|||
content_length '58637811' |
|||
no_checksum |
|||
end |
|||
|
@ -1,6 +1,7 @@ |
|||
class GoogleChrome < Cask |
|||
url 'https://dl.google.com/chrome/mac/stable/GGRO/googlechrome.dmg' |
|||
url 'https://dl.google.com/chrome/mac/stable/GGRO/googlechrome.dmg' |
|||
homepage 'https://www.google.com/chrome/' |
|||
version 'stable-channel' |
|||
content_length '56466358' |
|||
no_checksum |
|||
end |
|||
|
@ -1,6 +1,7 @@ |
|||
class Inkscape < Cask |
|||
homepage 'http://inkscape.org' |
|||
url 'http://downloads.sourceforge.net/inkscape/Inkscape-0.48.2-1-SNOWLEOPARD.dmg' |
|||
version '0.48.2-1' |
|||
content_length '87079397' |
|||
version '0.48.2-1' |
|||
sha1 '20073844e26dc787da04d951e3a24338758e5e8d' |
|||
end |
|||
|
@ -1,5 +1,6 @@ |
|||
class Iterm2 < Cask |
|||
url 'http://iterm2.googlecode.com/files/iTerm2-1_0_0_20120203.zip' |
|||
version '1.0.0.20120203' |
|||
homepage 'http://www.iterm2.com/' |
|||
version '1.0.0.20120203' |
|||
sha1 '554d2f9b9fbd7d4930f3a9b6962264bc026237c9' |
|||
end |
|||
|
@ -1,6 +1,7 @@ |
|||
class KeepassX < Cask |
|||
url 'http://downloads.sourceforge.net/keepassx/KeePassX-0.4.3.dmg' |
|||
url 'http://downloads.sourceforge.net/keepassx/KeePassX-0.4.3.dmg' |
|||
homepage 'http://www.keepassx.org' |
|||
version '0.4.3' |
|||
content_length '13423385' |
|||
sha1 '40f61b33f559f1de61e698b9f46b65c985a98955' |
|||
end |
|||
|
@ -1,6 +1,7 @@ |
|||
class NvAlt < Cask |
|||
url 'http://brettterpstra.com/downloads/nvalt2.1.zip?9d7bd4' |
|||
url 'http://brettterpstra.com/downloads/nvalt2.1.zip?9d7bd4' |
|||
homepage 'http://brettterpstra.com/project/nvalt/' |
|||
version '2.1' |
|||
content_length '3587960' |
|||
sha1 '686183dd51701ef6f304dec07d8c9049d553185a' |
|||
end |
|||
|
@ -1,6 +1,7 @@ |
|||
class Racket < Cask |
|||
url 'http://download.racket-lang.org/installers/5.3/racket/racket-5.3-bin-x86_64-osx-mac.dmg' |
|||
url 'http://download.racket-lang.org/installers/5.3/racket/racket-5.3-bin-x86_64-osx-mac.dmg' |
|||
homepage 'http://racket-lang.org/' |
|||
version '5.3' |
|||
content_length '66712297' |
|||
sha1 'da2642f5cebb16e7098b00988627ee6c45f5edc8' |
|||
end |
|||
|
@ -1,6 +1,7 @@ |
|||
class Rdio < Cask |
|||
url 'http://www.rdio.com/media/static/desktop/mac/Rdio.dmg' |
|||
url 'http://www.rdio.com/media/static/desktop/mac/Rdio.dmg' |
|||
homepage 'http://www.rdio.com' |
|||
version 'latest' |
|||
content_length '19387328' |
|||
no_checksum |
|||
end |
|||
|
@ -1,6 +1,7 @@ |
|||
class Ripit < Cask |
|||
url 'http://files.thelittleappfactory.com/ripit/RipIt.zip' |
|||
version 'latest' |
|||
homepage 'http://thelittleappfactory.com/ripit/' |
|||
content_length '8926510' |
|||
version 'latest' |
|||
no_checksum |
|||
end |
|||
|
@ -1,6 +1,7 @@ |
|||
class Rubymine < Cask |
|||
homepage 'http://www.jetbrains.com/ruby/' |
|||
url 'http://download.jetbrains.com/ruby/RubyMine-4.5.4.dmg' |
|||
homepage 'http://www.jetbrains.com/ruby/' |
|||
version '4.5.4' |
|||
content_length '111025727' |
|||
sha1 '3f5d4318207f8e1a661a1055089eed63473bbfb3' |
|||
end |
|||
|
@ -1,6 +1,7 @@ |
|||
class Steam < Cask |
|||
url 'http://media.steampowered.com/client/installer/steam.dmg' |
|||
url 'http://media.steampowered.com/client/installer/steam.dmg' |
|||
homepage 'http://store.steampowered.com/about/' |
|||
version 'stable' |
|||
content_length '3265407' |
|||
no_checksum |
|||
end |
|||
|
@ -1,6 +1,7 @@ |
|||
class Tagalicious < Cask |
|||
url 'http://files.thelittleappfactory.com/tagalicious/Tagalicious.zip' |
|||
version 'latest' |
|||
homepage 'http://files.thelittleappfactory.com/ringtones/Ringtones.zip' |
|||
content_length '4685352' |
|||
version 'latest' |
|||
no_checksum |
|||
end |
|||
|
@ -1,6 +1,7 @@ |
|||
class Textwrangler < Cask |
|||
url 'http://ash.barebones.com/TextWrangler_4.0.1.dmg' |
|||
homepage 'http://www.barebones.com/products/textwrangler' |
|||
version '4.0.1' |
|||
url 'http://ash.barebones.com/TextWrangler_4.0.1.dmg' |
|||
content_length '5419888' |
|||
sha1 '7205c48f94d588682bf82923b579e1674701f218' |
|||
end |
|||
|
@ -1,5 +1,6 @@ |
|||
class Tvmobili < Cask |
|||
homepage 'http://www.tvmobili.com/' |
|||
url 'http://www.tvmobili.com/binaries/stable/tvmobili-snowleopard-universal.dmg' |
|||
version 'current' |
|||
version 'current' |
|||
no_checksum |
|||
end |
|||
|
Some files were not shown because too many files changed in this diff
Loading…
Reference in new issue