Added xpdf, version 3.02 + security patch level 3.

master
Tom Taylor 2009-09-30 17:34:16 +01:00 committed by Max Howell
parent 327482130b
commit 3b4b738b2a
1 changed files with 19 additions and 0 deletions

19
Formula/xpdf.rb Normal file
View File

@ -0,0 +1,19 @@
require 'brewkit'
class Xpdf <Formula
url 'ftp://ftp.foolabs.com/pub/xpdf/xpdf-3.02.tar.gz'
homepage 'http://www.foolabs.com/xpdf/'
md5 '599dc4cc65a07ee868cf92a667a913d2'
def install
system "./configure", "--prefix=#{prefix}", "--disable-debug", "--disable-dependency-tracking"
system "make"
system "make install"
end
def patches
# latest security patch
["ftp://ftp.foolabs.com/pub/xpdf/xpdf-3.02pl3.patch"]
end
end