7b72ba3d4b
`make` and `make install` need to be done in separate steps. Closes Homebrew/homebrew#8757. Signed-off-by: Jack Nagel <jacknagel@gmail.com>
14 lines
358 B
Ruby
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
|