homebrew-core/Formula/rust.rb
Andrea Lattuada ccf747e6f6 Mozilla Rust 0.2
Closes Homebrew/homebrew#11309.

Signed-off-by: Adam Vandenberg <flangy@gmail.com>
2012-03-30 07:22:32 -07:00

19 lines
387 B
Ruby

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'
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