34 lines
1.2 KiB
Ruby
34 lines
1.2 KiB
Ruby
class Nimrod < Formula
|
|
desc "Statically typed, imperative programming language"
|
|
homepage "http://nim-lang.org/"
|
|
url "http://nim-lang.org/download/nim-0.11.2.tar.xz"
|
|
sha256 "5640e364d8bacec830f016daf3d4427911c48cebf962724ec903fea5d5a7a419"
|
|
head "https://github.com/Araq/Nim.git", :branch => "devel"
|
|
|
|
bottle do
|
|
cellar :any_skip_relocation
|
|
sha256 "3c9a33e6dd9e7caddd9a0daf8290a4cbf7eb5f483b9fdd5f42a78e8ca6f95396" => :el_capitan
|
|
sha256 "11c12362d33127b9625020f76026fd5c4d98816b0fab9e2954243183b4b8e7b1" => :yosemite
|
|
sha256 "99f5155891465502cb7643fe98a02756c25a3b46352c69145f10fe4875bb707f" => :mavericks
|
|
sha256 "c2765cefc4bec4f25620347e0448cdbfa64e223203f1e3f44590326009172712" => :mountain_lion
|
|
end
|
|
|
|
def install
|
|
if build.head?
|
|
system "/bin/sh", "bootstrap.sh"
|
|
else
|
|
system "/bin/sh", "build.sh"
|
|
end
|
|
system "/bin/sh", "install.sh", prefix
|
|
|
|
bin.install_symlink prefix/"nim/bin/nim"
|
|
bin.install_symlink prefix/"nim/bin/nim" => "nimrod"
|
|
end
|
|
|
|
test do
|
|
(testpath/"hello.nim").write <<-EOS.undent
|
|
echo("hello")
|
|
EOS
|
|
assert_equal "hello", shell_output("#{bin}/nim compile --verbosity:0 --run #{testpath}/hello.nim").chomp
|
|
end
|
|
end
|