Skip to content

Instantly share code, notes, and snippets.

@martijnthe
Created April 1, 2013 03:36
Show Gist options
  • Save martijnthe/5283127 to your computer and use it in GitHub Desktop.
Save martijnthe/5283127 to your computer and use it in GitHub Desktop.
isl.rb
require 'formula'
class Isl < Formula
homepage 'http://www.kotnet.org/~skimo/isl/'
url 'http://garage.kotnet.org/~skimo/isl/isl-0.11.1.tar.bz2'
mirror 'ftp://gcc.gnu.org/pub/gcc/infrastructure/isl-0.10.tar.bz2'
sha1 'd7936929c3937e03f09b64c3c54e49422fa8ddb3'
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
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment