aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/xpdf.rb
blob: e1a0ce2a906455c002cc2f43513d9699360a5169 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
require 'formula'

class Xpdf < Formula
  url 'ftp://ftp.foolabs.com/pub/xpdf/xpdf-3.03.tar.gz'
  homepage 'http://www.foolabs.com/xpdf/'
  md5 'af75f772bee0e5ae4a811ff9d03eac5a'

  def install
    system "./configure", "--disable-debug", "--disable-dependency-tracking",
                          "--prefix=#{prefix}",
                          "--mandir=#{man}"
    system "make"
    system "make install"
  end
end