homebrew-core/Formula/gecode.rb

21 lines
695 B
Ruby
Raw Normal View History

require 'formula'
class Gecode < Formula
desc "Toolkit for developing constraint-based systems and applications"
homepage 'http://www.gecode.org/'
url 'http://www.gecode.org/download/gecode-4.3.3.tar.gz'
sha1 '392f079979a582e040ff1d58736f23e985ca53ff'
2014-11-23 21:01:53 +00:00
bottle do
cellar :any
2015-03-07 20:13:45 +00:00
sha256 "a2038d4e65773dadec944dcf2d1d25730590b6c3d4c584253cf0d0a0f3beb173" => :yosemite
sha256 "ff06aa1e2dd83ac13da3c3a64433ed844e2eb5d74a5ef25d992b8d6369943d44" => :mavericks
sha256 "83c052f33a9a13f74d4d0b22d9d8d9adf7569d35cecaf626ea5a0b0adc5601f9" => :mountain_lion
2014-11-23 21:01:53 +00:00
end
def install
system "./configure", "--prefix=#{prefix}", "--disable-examples"
system "make install"
end
end