mirror of
https://github.com/donl/homebrew-cask-versions.git
synced 2026-07-17 22:06:36 -06:00
`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
7 lines
231 B
Ruby
7 lines
231 B
Ruby
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'
|
|
content_length '39116463'
|
|
sha1 '0bd1d9d5b1da69b77217949b788597a952cbd846'
|
|
end
|