aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/rust.rb
blob: b1d680fd0ac36052e30b85fa2cf0020f0d743d89 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
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