homebrew-core/Formula/rust.rb
BrewTestBot e32f20f8db rust: add 0.9 bottle.
Closes Homebrew/homebrew#25774.

Signed-off-by: Mike McQuaid <mike@mikemcquaid.com>
2014-01-10 08:19:50 +00:00

34 lines
892 B
Ruby

require 'formula'
class Rust < Formula
homepage 'http://www.rust-lang.org/'
url 'http://static.rust-lang.org/dist/rust-0.9.tar.gz'
sha1 '6c5ef4c3c87a1b424510e41ad95dd17981b707b3'
head 'https://github.com/mozilla/rust.git'
bottle do
sha1 'faecc6797465be3297554bf18c4b0ff73d27bfb1' => :mavericks
sha1 '4546c45d79531e0797af6e7bd9c6b2aaceb8b1e4' => :mountain_lion
sha1 '924740d0e449bab18e7f06f263ee2f1ececee5f4' => :lion
end
fails_with :clang do
build 318
cause "cannot initialize a parameter of type 'volatile long long *' with an rvalue of type 'int *'"
end
def install
args = ["--prefix=#{prefix}"]
args << "--enable-clang" if ENV.compiler == :clang
system "./configure", *args
system "make"
system "make install"
end
def test
system "#{bin}/rustc"
system "#{bin}/rustdoc -h"
system "#{bin}/rustpkg -v"
end
end