homebrew-core/Formula/pari.rb
Ralf Stephan 7b72ba3d4b pari 2.5.0
`make` and `make install` need to be done in separate steps.

Closes Homebrew/homebrew#8757.

Signed-off-by: Jack Nagel <jacknagel@gmail.com>
2011-11-23 13:55:58 -06:00

14 lines
358 B
Ruby

require 'formula'
class Pari < Formula
url 'http://pari.math.u-bordeaux.fr/pub/pari/unix/pari-2.5.0.tar.gz'
homepage 'http://pari.math.u-bordeaux.fr/'
md5 '0b595a1345679ff482785a686c863e9f'
def install
system "./Configure", "--prefix=#{prefix}"
# make needs to be done in two steps
system "make all"
system "make install"
end
end