2011-04-12 13:38:46 +00:00
|
|
|
require 'formula'
|
|
|
|
|
|
|
|
class Gecode < Formula
|
|
|
|
homepage 'http://www.gecode.org/'
|
2013-04-10 22:30:50 +00:00
|
|
|
url 'http://www.gecode.org/download/gecode-4.0.0.tar.gz'
|
|
|
|
sha1 'a1137f89fd527d47d183b3d8e38bc5d52a65b954'
|
2011-04-12 13:38:46 +00:00
|
|
|
|
|
|
|
def install
|
2012-04-01 21:31:55 +00:00
|
|
|
system "./configure", "--prefix=#{prefix}", "--disable-examples"
|
2011-04-12 13:38:46 +00:00
|
|
|
system "make install"
|
|
|
|
end
|
|
|
|
end
|