homebrew-core/Formula/nimrod.rb
Marat Safin e50bd62185 nimrod: fix head install
Closes Homebrew/homebrew#42055.

Signed-off-by: Alex Dunn <dunn.alex@gmail.com>
2015-07-26 08:20:49 -07:00

33 lines
1.1 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
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