aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/pari.rb
blob: 25480fec2bfe4a4202350a887a01fa81a5d3a1c4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
require 'formula'

class Pari < Formula
  homepage 'http://pari.math.u-bordeaux.fr/'
  url 'http://pari.math.u-bordeaux.fr/pub/pari/unix/pari-2.5.5.tar.gz'
  sha1 '77637f935ee4a3b78e7015cef00146bd2f7e96bc'

  depends_on 'readline'
  depends_on :x11

  def install
    readline = Formula["readline"].opt_prefix
    system "./Configure", "--prefix=#{prefix}",
                          "--without-gmp",
                          "--with-readline=#{readline}"
    # make needs to be done in two steps
    system "make all"
    system "make install"
  end
end