2010-06-21 04:16:17 +00:00
|
|
|
require 'formula'
|
|
|
|
|
2011-03-10 05:11:03 +00:00
|
|
|
class Ginac < Formula
|
2010-06-21 04:16:17 +00:00
|
|
|
homepage 'http://www.ginac.de/'
|
2013-01-28 02:44:15 +00:00
|
|
|
url 'http://www.ginac.de/ginac-1.6.2.tar.bz2'
|
2012-09-03 18:33:56 +00:00
|
|
|
sha1 'c93913c4c543874b2ade4f0390030641be7e0c41'
|
2010-06-21 04:16:17 +00:00
|
|
|
|
2013-04-12 04:41:42 +00:00
|
|
|
depends_on 'pkg-config' => :build
|
2010-06-21 04:16:17 +00:00
|
|
|
depends_on 'cln'
|
2012-11-11 03:12:26 +00:00
|
|
|
depends_on 'readline'
|
2010-06-21 04:16:17 +00:00
|
|
|
|
2014-02-24 22:56:53 +00:00
|
|
|
# Fixes compilation with libc++; already applied upstream
|
2014-03-17 00:35:07 +00:00
|
|
|
patch do
|
|
|
|
url "http://www.ginac.de/ginac.git?p=ginac.git;a=commitdiff_plain;h=5bf87cea66bb2071222c2910ed68c2649a98906c"
|
|
|
|
sha1 "415dad5f0f233268ad743e5beacf99c03bb339ae"
|
2014-02-24 22:56:53 +00:00
|
|
|
end
|
|
|
|
|
2010-06-21 04:16:17 +00:00
|
|
|
def install
|
2013-01-28 02:44:15 +00:00
|
|
|
system "./configure", "--disable-dependency-tracking",
|
|
|
|
"--prefix=#{prefix}"
|
2010-06-21 04:16:17 +00:00
|
|
|
system "make install"
|
|
|
|
end
|
|
|
|
end
|