4cd0935be7
Closes Homebrew/homebrew#26942. Closes Homebrew/homebrew#26946. Signed-off-by: Adam Vandenberg <flangy@gmail.com>
35 lines
955 B
Ruby
35 lines
955 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 << "--disable-rpath" if build.head?
|
|
args << "--enable-clang" if ENV.compiler == :clang
|
|
system "./configure", *args
|
|
system "make"
|
|
system "make install"
|
|
end
|
|
|
|
test do
|
|
system "#{bin}/rustc"
|
|
system "#{bin}/rustdoc -h"
|
|
system "#{bin}/rustpkg -v" unless build.head?
|
|
end
|
|
end
|