aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/gecode.rb
blob: ccccca1a458a3681ae947f07790d66c9fc00807a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
require 'formula'

class Gecode < Formula
  homepage 'http://www.gecode.org/'
  url 'http://www.gecode.org/download/gecode-4.3.2.tar.gz'
  sha1 '05c79e185197d85bf38dd074fe7c299d4976f552'

  bottle do
    cellar :any
    sha1 "ba6eb629c7c589313b01f7f1fa9e7efaa982e484" => :yosemite
    sha1 "0e92784b621811737eabc4a002452fdf549e015c" => :mavericks
    sha1 "e63ad8a3f8313fbf61a6d58b8db5bc82cb9b562e" => :mountain_lion
  end

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