diff options
Diffstat (limited to 'Library/Formula')
| -rw-r--r-- | Library/Formula/xpdf.rb | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/Library/Formula/xpdf.rb b/Library/Formula/xpdf.rb new file mode 100644 index 000000000..3163bee61 --- /dev/null +++ b/Library/Formula/xpdf.rb @@ -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
\ No newline at end of file |
