2010-11-12 11:02:18 +00:00
|
|
|
require 'formula'
|
|
|
|
|
2011-03-10 05:11:03 +00:00
|
|
|
class Pari < Formula
|
2011-11-23 16:37:32 +00:00
|
|
|
url 'http://pari.math.u-bordeaux.fr/pub/pari/unix/pari-2.5.0.tar.gz'
|
2010-11-12 11:02:18 +00:00
|
|
|
homepage 'http://pari.math.u-bordeaux.fr/'
|
2011-11-23 16:37:32 +00:00
|
|
|
md5 '0b595a1345679ff482785a686c863e9f'
|
2010-11-12 11:02:18 +00:00
|
|
|
|
|
|
|
def install
|
|
|
|
system "./Configure", "--prefix=#{prefix}"
|
2011-11-23 16:37:32 +00:00
|
|
|
# make needs to be done in two steps
|
|
|
|
system "make all"
|
2010-11-12 11:02:18 +00:00
|
|
|
system "make install"
|
|
|
|
end
|
2011-03-10 05:11:03 +00:00
|
|
|
end
|