458626435a
Signed-off-by: Adam Vandenberg <flangy@gmail.com>
13 lines
354 B
Ruby
13 lines
354 B
Ruby
require 'formula'
|
|
|
|
class Gecode < Formula
|
|
url 'http://www.gecode.org/download/gecode-3.5.0.tar.gz'
|
|
homepage 'http://www.gecode.org/'
|
|
md5 'bb920bb708b6ef9c4e9f5fa47681a659'
|
|
|
|
def install
|
|
system "./configure", "--disable-debug", "--disable-dependency-tracking",
|
|
"--prefix=#{prefix}"
|
|
system "make install"
|
|
end
|
|
end
|