homebrew-core/Formula/isl.rb

60 lines
1.7 KiB
Ruby
Raw Normal View History

class Isl < Formula
2015-01-08 07:13:34 +00:00
homepage "http://freecode.com/projects/isl"
# Note: Always use tarball instead of git tag for stable version.
#
# Currently isl detects its version using source code directory name
# and update isl_version() function accordingly. All other names will
# result in isl_version() function returning "UNKNOWN" and hence break
# package detection.
#
# 0.13 is out, but we can't upgrade until a compatible version of cloog is
# released.
2015-01-08 07:13:34 +00:00
url "http://isl.gforge.inria.fr/isl-0.12.2.tar.bz2"
sha1 "ca98a91e35fb3ded10d080342065919764d6f928"
2013-09-24 23:32:59 +00:00
bottle do
2013-12-05 07:02:39 +00:00
cellar :any
2014-10-23 11:11:40 +00:00
revision 2
sha1 "502db664090c83f36515b901e8a066d9ef4f0bb4" => :yosemite
sha1 "f669eadf21a26782f4700facbec71f8d3d1dff7d" => :mavericks
sha1 "808982b34df706187f041d7b21e644aa3d74b747" => :mountain_lion
2013-09-24 23:32:59 +00:00
end
2013-09-20 15:15:56 +00:00
head do
2015-01-08 07:13:34 +00:00
url "http://repo.or.cz/r/isl.git"
2014-05-23 21:17:35 +00:00
depends_on "autoconf" => :build
depends_on "automake" => :build
depends_on "libtool" => :build
end
2015-01-08 07:13:34 +00:00
depends_on "gmp"
2013-09-20 15:15:56 +00:00
def install
system "./autogen.sh" if build.head?
system "./configure", "--disable-dependency-tracking",
"--disable-silent-rules",
"--prefix=#{prefix}",
"--with-gmp=system",
2014-02-25 06:59:23 +00:00
"--with-gmp-prefix=#{Formula["gmp"].opt_prefix}"
system "make"
system "make", "install"
(share/"gdb/auto-load").install Dir["#{lib}/*-gdb.py"]
end
test do
(testpath/"test.c").write <<-EOS.undent
#include <isl/ctx.h>
int main()
{
isl_ctx* ctx = isl_ctx_alloc();
isl_ctx_free(ctx);
return 0;
}
EOS
system ENV.cc, "test.c", "-lisl", "-o", "test"
system "./test"
end
end