2014-08-02 16:55:38 +00:00
|
|
|
require "formula"
|
2010-06-21 04:14:49 +00:00
|
|
|
|
2011-03-10 05:11:03 +00:00
|
|
|
class Cln < Formula
|
2014-08-02 16:55:38 +00:00
|
|
|
homepage "http://www.ginac.de/CLN/"
|
2014-10-23 13:58:35 +00:00
|
|
|
url "http://www.ginac.de/CLN/cln-1.3.4.tar.bz2"
|
|
|
|
sha1 "76f73071236ead72ba5c9ee892f29ca24e557b8c"
|
2010-06-21 04:14:49 +00:00
|
|
|
|
2014-07-03 17:36:37 +00:00
|
|
|
bottle do
|
|
|
|
cellar :any
|
|
|
|
sha1 "54f11e2ffe58d465e7ae7740a607f38169e99d32" => :mavericks
|
|
|
|
sha1 "657f0060d774be90d2a88ebc480a20b6043e7c67" => :mountain_lion
|
|
|
|
sha1 "3c4a67e6672596a0a9881fb23b7aa3c9eb2c673f" => :lion
|
|
|
|
end
|
|
|
|
|
2014-08-02 16:55:38 +00:00
|
|
|
depends_on "gmp"
|
2013-12-15 21:19:39 +00:00
|
|
|
|
2010-06-21 04:14:49 +00:00
|
|
|
def install
|
|
|
|
system "./configure", "--prefix=#{prefix}",
|
2014-08-02 16:55:38 +00:00
|
|
|
"--disable-dependency-tracking"
|
2010-06-21 04:14:49 +00:00
|
|
|
system "make install"
|
|
|
|
end
|
|
|
|
end
|