aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/rust.rb
blob: 55364365aaf49b18a553b9c67ee7a0a706b083aa (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
require 'formula'

class Rust < Formula
  url 'http://dl.rust-lang.org/dist/rust-0.2.tar.gz'
  homepage 'http://www.rust-lang.org/'
  md5 '47be90f952ec01c3088af58be78fd618'

  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
    system "./configure", "--prefix=#{prefix}"
    system "make"
    system "make install"
  end

  def test
    system "#{bin}/rustc"
    system "#{bin}/rustdoc"
    system "#{bin}/cargo"
  end
end