blob: 9687d34e8a66ba47a28987e2009f7fbe995aeab7 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
  | 
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
  |