2011-04-12 13:38:46 +00:00
|
|
|
require 'formula'
|
|
|
|
|
|
|
|
class Gecode < Formula
|
|
|
|
homepage 'http://www.gecode.org/'
|
2013-11-30 18:15:03 +00:00
|
|
|
url 'http://www.gecode.org/download/gecode-4.2.1.tar.gz'
|
|
|
|
sha1 '41464bcb5bbbc62858ec6ae6b28a6d115343a040'
|
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
|