You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
619 B
17 lines
619 B
cask :v1 => 'julia-nightly' do
|
|
version '0.5.0-b77587362d'
|
|
sha256 'ac1c1631a6bf5d94ab5b56af96106354e15ac490093f9e134298ad29a7ec584f'
|
|
|
|
# amazonaws.com is the official download host per vendor homepage
|
|
url "https://s3.amazonaws.com/julianightlies/bin/osx/x64/#{version.sub(%r{(\d+\.\d+).*},'\1')}/julia-#{version}-osx.dmg"
|
|
name 'Julia'
|
|
homepage 'http://julialang.org'
|
|
license :mit
|
|
|
|
app "Julia-#{version.sub(%r{(.+)-(.+)},'\1-dev-\2')}.app"
|
|
binary "Julia-#{version.sub(%r{(.+)-(.+)},'\1-dev-\2')}.app/Contents/Resources/julia/bin/julia"
|
|
|
|
depends_on :macos => '>= :lion'
|
|
|
|
zap :delete => '~/.julia'
|
|
end
|
|
|