aboutsummaryrefslogtreecommitdiffstats
path: root/Library
diff options
context:
space:
mode:
authorRalf Stephan2011-11-23 17:37:32 +0100
committerJack Nagel2011-11-23 13:55:58 -0600
commit438375cbd231666e03319110b2f123326b59e5b4 (patch)
tree0ccd80b0297da6c41ee249c77adfd3bdcc13d2be /Library
parente5fcd7b7a002dbd040d412088d8c943fee949450 (diff)
downloadhomebrew-438375cbd231666e03319110b2f123326b59e5b4.tar.bz2
pari 2.5.0
`make` and `make install` need to be done in separate steps. Closes #8757. Signed-off-by: Jack Nagel <jacknagel@gmail.com>
Diffstat (limited to 'Library')
-rw-r--r--Library/Formula/pari.rb6
1 files changed, 4 insertions, 2 deletions
diff --git a/Library/Formula/pari.rb b/Library/Formula/pari.rb
index 690798d66..278a377da 100644
--- a/Library/Formula/pari.rb
+++ b/Library/Formula/pari.rb
@@ -1,12 +1,14 @@
require 'formula'
class Pari < Formula
- url 'http://pari.math.u-bordeaux.fr/pub/pari/unix/pari-2.3.5.tar.gz'
+ url 'http://pari.math.u-bordeaux.fr/pub/pari/unix/pari-2.5.0.tar.gz'
homepage 'http://pari.math.u-bordeaux.fr/'
- md5 '6077c6db56fdd32e39a06a9bf320e1f7'
+ md5 '0b595a1345679ff482785a686c863e9f'
def install
system "./Configure", "--prefix=#{prefix}"
+ # make needs to be done in two steps
+ system "make all"
system "make install"
end
end