blob: 7038ba62957f338f2174462465e07db7739ff497 (
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.2.1.tar.gz'
  sha1 '41464bcb5bbbc62858ec6ae6b28a6d115343a040'
  def install
    system "./configure", "--prefix=#{prefix}", "--disable-examples"
    system "make install"
  end
end
  |