homebrew-core/Formula/rust.rb
2015-06-26 20:15:58 +01:00

108 lines
3.3 KiB
Ruby

class Rust < Formula
desc "Safe, concurrent, practical language"
homepage 'http://www.rust-lang.org/'
stable do
url 'https://static.rust-lang.org/dist/rustc-1.1.0-src.tar.gz'
sha256 'cb09f443b37ec1b81fe73c04eb413f9f656859cf7d00bc5088008cbc2a63fa8a'
resource "cargo" do
url "https://github.com/rust-lang/cargo.git", :revision => "b030d35d5cf6b35bf8a6bfd218ab4df9d6a86361"
end
# name includes date to satisfy cache
resource "cargo-nightly-2015-06-25" do
url "https://static-rust-lang-org.s3.amazonaws.com/cargo-dist/2015-06-25/cargo-nightly-x86_64-apple-darwin.tar.gz"
sha256 "b2e07bbee79cb8ad1e4f91a43cc3d93603e068a46b89bbe934d01ff97bfb0060"
end
# name includes date to satisfy cache
resource "rustc-nightly-2015-06-25" do
url "https://static-rust-lang-org.s3.amazonaws.com/dist/2015-06-25/rustc-nightly-x86_64-apple-darwin.tar.gz"
sha256 "c4eb0a639b6deb3e2aceb1713afe6570118d1055bf189f1057a839238dbe7165"
end
end
head do
url "https://github.com/rust-lang/rust.git"
resource "cargo" do
url "https://github.com/rust-lang/cargo.git"
end
end
bottle do
sha256 "846bd0df87e414ecd4301659d1ad1e4491fba7cc44c78cf1e9c1874ecf24f808" => :yosemite
sha256 "e78574a971f0111c7011c603a56cc97cea0e1980e19c95a9a10015c423f85f28" => :mavericks
sha256 "f56191dd3cf36717649184111f4d8a4a9ddcefe7d12706f67cd3151ca1cfe6be" => :mountain_lion
end
depends_on "openssl"
depends_on "cmake" => :build
depends_on "pkg-config" => :build
# According to the official readme, GCC 4.7+ is required
fails_with :gcc_4_0
fails_with :gcc
("4.3".."4.6").each do |n|
fails_with :gcc => n
end
def install
args = ["--prefix=#{prefix}"]
args << "--disable-rpath" if build.head?
args << "--enable-clang" if ENV.compiler == :clang
if build.head?
args << "--release-channel=nightly"
else
args << "--release-channel=stable"
end
system "./configure", *args
system "make"
system "make install"
resource("cargo").stage do
cargo_stage_path = pwd
if build.stable?
resource("rustc-nightly-2015-06-25").stage do
system "./install.sh", "--prefix=#{cargo_stage_path}/rustc"
end
resource("cargo-nightly-2015-06-25").stage do
system "./install.sh", "--prefix=#{cargo_stage_path}/target/snapshot/cargo"
# satisfy make target to skip download
touch "#{cargo_stage_path}/target/snapshot/cargo/bin/cargo"
end
end
args = ["--prefix=#{prefix}"]
if build.head?
args << "--local-rust-root=#{prefix}"
else
args << "--local-rust-root=#{cargo_stage_path}/rustc"
end
system "./configure", *args
system "make"
system "make", "install"
end
rm_rf prefix/"lib/rustlib/uninstall.sh"
rm_rf prefix/"lib/rustlib/install.log"
end
test do
system "#{bin}/rustdoc", "-h"
(testpath/"hello.rs").write <<-EOS.undent
fn main() {
println!("Hello World!");
}
EOS
system "#{bin}/rustc", "hello.rs"
assert_equal "Hello World!\n", `./hello`
system "#{bin}/cargo", "new", "hello_world", "--bin"
assert_equal "Hello, world!",
(testpath/"hello_world").cd { `#{bin}/cargo run`.split("\n").last }
end
end