xpdf: import from homebrew/x11.

master
Mike McQuaid 2017-01-25 10:24:19 +00:00
parent f388de41b3
commit 777ea9ad04
1 changed files with 38 additions and 0 deletions

38
Formula/xpdf.rb Normal file
View File

@ -0,0 +1,38 @@
class Xpdf < Formula
desc "PDF viewer"
homepage "http://www.foolabs.com/xpdf/"
url "ftp://ftp.foolabs.com/pub/xpdf/xpdf-3.04.tar.gz"
sha256 "11390c74733abcb262aaca4db68710f13ffffd42bfe2a0861a5dfc912b2977e5"
revision 1
depends_on "openmotif"
depends_on "freetype"
depends_on :x11
conflicts_with "pdf2image", "poppler",
:because => "xpdf, pdf2image, and poppler install conflicting executables"
def install
freetype = Formula["freetype"]
openmotif = Formula["openmotif"]
system "./configure", "--prefix=#{prefix}",
"--with-freetype2-library=#{freetype.opt_lib}",
"--with-freetype2-includes=#{freetype.opt_include}/freetype2",
"--with-Xm-library=#{openmotif.opt_lib}",
"--with-Xm-includes=#{openmotif.opt_include}",
"--with-Xpm-library=#{MacOS::X11.lib}",
"--with-Xpm-includes=#{MacOS::X11.include}",
"--with-Xext-library=#{MacOS::X11.lib}",
"--with-Xext-includes=#{MacOS::X11.include}",
"--with-Xp-library=#{MacOS::X11.lib}",
"--with-Xp-includes=#{MacOS::X11.include}",
"--with-Xt-library=#{MacOS::X11.lib}",
"--with-Xt-includes=#{MacOS::X11.include}"
system "make"
system "make", "install"
end
test do
system "#{bin}/xpdf", "--version"
end
end