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.4.0-bdcbf063f1'
|
|
sha256 '74a373798c940a766483d84f1ca52e0a6b44394a405b9a16ea96f7188b2a843e'
|
|
|
|
# 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
|
|
|