blob: 4b97012b38ca28f5a265e2607917fb0f4bc0cf54 (
plain)
| 1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
 | require 'formula'
class Cln < Formula
  url 'http://www.ginac.de/CLN/cln-1.3.2.tar.bz2'
  homepage 'http://www.ginac.de/CLN/'
  md5 'd897cce94d9c34d106575ed4ec865d71'
  depends_on "gmp"
  def install
    system "./configure", "--prefix=#{prefix}",
                          "--disable-dependency-tracking",
                          "--with-gmp=#{HOMEBREW_PREFIX}"
    system "make install"
  end
end
 |