2011-04-12 13:38:46 +00:00
|
|
|
require 'formula'
|
|
|
|
|
|
|
|
class Gecode < Formula
|
|
|
|
homepage 'http://www.gecode.org/'
|
2012-04-02 23:50:00 +00:00
|
|
|
url 'http://www.gecode.org/download/gecode-3.7.3.tar.gz'
|
2012-09-03 18:33:56 +00:00
|
|
|
sha1 'f9281a80788cd0c0f0495cd6145fe4bf9ee74117'
|
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
|