blob: 1270c2f12cc7ba6658790ede93206b4fa4908792 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
|
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
|