homebrew-core/Formula/ats2-postiats.rb
2016-02-24 11:32:06 +00:00

45 lines
1.5 KiB
Ruby

class Ats2Postiats < Formula
desc "ATS programming language implementation"
homepage "http://www.ats-lang.org/"
url "https://downloads.sourceforge.net/project/ats2-lang/ats2-lang/ats2-postiats-0.2.6/ATS2-Postiats-0.2.6.tgz"
sha256 "3179a33eb059992bbab0a172fc0daecc562d9d255797bfda4cabe69e2be2ca41"
bottle do
cellar :any
sha256 "6e785e794968e28490e1efb6a27caddcf7354487a86d8175e08eda0548d2e2e3" => :el_capitan
sha256 "927645699416856b37464b7a590df5305728a9356e980a47698e95268b97843d" => :yosemite
sha256 "0b7a8ec75778785d525abb6039f006d2d2971f30c700f33f20d457cd5cc0e3e5" => :mavericks
end
depends_on "gmp"
fails_with :clang do
cause "Trying to compile this with Clang is failure-galore."
end
# error: expected declaration specifiers or '...' before '__builtin_object_size'
# Already fixed upstream. Can remove this on next release.
patch do
url "https://github.com/githwxi/ATS-Postiats/commit/5b3d6a8ac7.diff"
sha256 "9e7ceea54d9e02323711e0ede3b64528f008f084007a0bea43ce2be9b31d916a"
end
def install
ENV.deparallelize
system "./configure", "--prefix=#{prefix}"
# Disable GC support for patsopt
# https://github.com/githwxi/ATS-Postiats/issues/76
system "make", "GCFLAG=-D_ATS_NGC", "all", "install"
end
test do
(testpath/"hello.dats").write <<-EOS.undent
val _ = print ("Hello, world!\n")
implement main0 () = ()
EOS
system "#{bin}/patscc", "hello.dats", "-o", "hello"
assert_match "Hello, world!", shell_output(testpath/"hello")
end
end