homebrew-core/Formula/pari.rb
Tran Vinh Cuong bf38e5776f Added a formula for PARI/GP version 2.3.5, a computer algebra system
Signed-off-by: Adam Vandenberg <flangy@gmail.com>
2010-11-12 08:48:11 -08:00

12 lines
No EOL
293 B
Ruby

require 'formula'
class Pari <Formula
url 'http://pari.math.u-bordeaux.fr/pub/pari/unix/pari-2.3.5.tar.gz'
homepage 'http://pari.math.u-bordeaux.fr/'
md5 '6077c6db56fdd32e39a06a9bf320e1f7'
def install
system "./Configure", "--prefix=#{prefix}"
system "make install"
end
end