aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/pari.rb
blob: b0d56bf0f9cc20d44d4b02736452f4c6e564c994 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
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