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
|
2014-10-23 14:25:22 +00:00
|
|
|
sha1 "4e7caf04c3fc9e5b38bc45b2ca8110aefdffea28" => :yosemite
|
|
|
|
sha1 "32c6b097023b1c7e5f7bea248a39648356dc02e3" => :mavericks
|
|
|
|
sha1 "1c2e8079757a031feb65279be81f0b9874098134" => :mountain_lion
|
2014-07-03 17:36:37 +00:00
|
|
|
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
|