homebrew-core/Formula/isl.rb
Xiyue Deng 5e1ae81c5f New formula: isl
* Make cloog build using external isl.
  - Needed by newer GCC for which the bundled isl in cloog 0.17.0 is
    too old.
* Improve cloog test case indentation.

Closes Homebrew/homebrew#15862.

Signed-off-by: Jack Nagel <jacknagel@gmail.com>
2012-12-04 21:30:59 -06:00

22 lines
491 B
Ruby

require 'formula'
class Isl < Formula
homepage 'http://www.kotnet.org/~skimo/isl/'
url 'http://www.kotnet.org/~skimo/isl/isl-0.10.tar.bz2'
mirror 'ftp://gcc.gnu.org/pub/gcc/infrastructure/isl-0.10.tar.bz2'
sha1 '91db73f10075a67039c38abfcd5b1bd64581a6e3'
head 'http://repo.or.cz/w/isl.git'
depends_on 'gmp'
def install
args = [
"--disable-dependency-tracking",
"--prefix=#{prefix}",
]
system "./configure", *args
system "make install"
end
end