79c1d5d935
This is where e.g. glib puts similar scripts; potentially gdb from homebrew-versions needs to be configured to look here instead of in its keg, but I'm not an expert.
19 lines
614 B
Ruby
19 lines
614 B
Ruby
require 'formula'
|
|
|
|
class Isl < Formula
|
|
homepage 'http://www.kotnet.org/~skimo/isl/'
|
|
url 'http://ftp.de.debian.org/debian/pool/main/i/isl/isl_0.11.2.orig.tar.bz2'
|
|
mirror 'ftp://ftp.linux.student.kuleuven.be/pub/people/skimo/isl/isl-0.11.2.tar.bz2'
|
|
mirror 'http://www.kotnet.org/~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"
|
|
(share/"gdb/auto-load").install Dir["#{lib}/*-gdb.py"]
|
|
end
|
|
end
|