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-8a862705f2'
|
|
sha256 '1f3ce43a64b2248f02206f6cb6687b726f97c67a5901b373aa2f8adbd67d62d7'
|
|
|
|
# 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
|
|
|