aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/gecode.rb
blob: 15c0e5508a86146ec57a837023d85199320bc3a9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
require 'formula'

class Gecode < Formula
  homepage 'http://www.gecode.org/'
  url 'http://www.gecode.org/download/gecode-4.0.0.tar.gz'
  sha1 'a1137f89fd527d47d183b3d8e38bc5d52a65b954'

  def install
    system "./configure", "--prefix=#{prefix}", "--disable-examples"
    system "make install"
  end
end