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.
13 lines
326 B
13 lines
326 B
11 years ago
|
class RustNightly < Cask
|
||
|
arch = `uname -m`.chomp
|
||
|
arch = 'i686' if arch.empty?
|
||
|
pkgname = "rust-nightly-#{arch}-apple-darwin.pkg"
|
||
|
|
||
|
url "http://static.rust-lang.org/dist/#{pkgname}"
|
||
|
homepage 'http://www.rust-lang.org/'
|
||
|
version 'latest'
|
||
|
install pkgname
|
||
|
no_checksum
|
||
|
uninstall :pkgutil => 'org.rust-lang.rust'
|
||
|
end
|