homebrew-core/Formula/ats2-postiats.rb

39 lines
1.1 KiB
Ruby
Raw Normal View History

2014-07-13 08:46:22 +00:00
class Ats2Postiats < Formula
homepage "http://www.ats-lang.org/"
url "https://downloads.sourceforge.net/project/ats2-lang/ats2-lang/ats2-postiats-0.1.8/ATS2-Postiats-0.1.8.tgz"
sha1 "00f7489375a834c902e08b248dac197c770bbf88"
2014-07-13 08:46:22 +00:00
bottle do
cellar :any
2015-01-25 09:23:23 +00:00
sha1 "c4aa7ad5059cd88680dd560b7b11839bfe17b26a" => :yosemite
sha1 "518d0eac9f590a0eca8f4b8734270f1874bf532c" => :mavericks
sha1 "6fcef0c5e1a94ff4f4a3eae9059cd03d7cb83b9d" => :mountain_lion
end
2014-07-13 08:46:22 +00:00
depends_on "gmp"
fails_with :clang do
cause "Trying to compile this with Clang is failure-galore."
end
2014-07-13 08:46:22 +00:00
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"
system "make", "install"
end
test do
2014-07-28 00:02:07 +00:00
(testpath/"hello.dats").write <<-EOS.undent
val _ = print ("Hello, world!\n")
implement main0 () = ()
EOS
2014-07-13 08:46:22 +00:00
system "#{bin}/patscc hello.dats -o hello"
2014-05-04 19:12:41 +00:00
assert_match "Hello, world!", shell_output(testpath/"hello")
2014-07-13 08:46:22 +00:00
end
end