homebrew-core/Formula/isl.rb
Misty De Meo cfd34f7bc7 isl: revert to 0.11.2
0.12 breaks GCC 4.8 and 4.9 at the moment.

Fixes Homebrew/homebrew#20835.

This reverts commit e2b10438666f41366f596fe762b2455f5761bcd8.
2013-06-26 22:45:57 -05:00

17 lines
472 B
Ruby

require 'formula'
class Isl < Formula
homepage 'http://www.kotnet.org/~skimo/isl/'
url 'http://www.kotnet.org/~skimo/isl/isl-0.11.2.tar.bz2'
mirror 'ftp://ftp.linux.student.kuleuven.be/pub/people/skimo/isl/isl-0.11.2.tar.bz2'
sha1 'ca2c93a58e899379d39f2956b2299c62e3975018'
head 'http://repo.or.cz/w/isl.git'
depends_on 'gmp'
def install
system "./configure", "--disable-dependency-tracking", "--prefix=#{prefix}"
system "make install"
end
end