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