homebrew-core/Formula/poppler.rb
2015-12-08 11:39:34 +01:00

77 lines
2.3 KiB
Ruby

class Poppler < Formula
desc "PDF rendering library (based on the xpdf-3.0 code base)"
homepage "http://poppler.freedesktop.org"
url "http://poppler.freedesktop.org/poppler-0.38.0.tar.xz"
sha256 "6f0c0d49c8346d7c0cfe6348124e7f19cc901b5d35c9cd89944aac6e454e8a8b"
bottle do
sha256 "91c7ac7d4c2a74dd489f25a9a69992821fc924da87802733979578e301a919a7" => :el_capitan
sha256 "3ae61e6177bd0736c589e820fc4c6112f3a23b903cf7ca99723b739c506169b2" => :yosemite
sha256 "e095f6e9e0d36f00866582f2067abc0e2d6db8834af89c90212ff9f633f6ecdf" => :mavericks
end
option "with-qt", "Build Qt backend"
option "with-qt5", "Build Qt5 backend"
option "with-little-cms2", "Use color management system"
deprecated_option "with-qt4" => "with-qt"
deprecated_option "with-lcms2" => "with-little-cms2"
depends_on "pkg-config" => :build
depends_on "cairo"
depends_on "fontconfig"
depends_on "freetype"
depends_on "gettext"
depends_on "glib"
depends_on "gobject-introspection"
depends_on "jpeg"
depends_on "libpng"
depends_on "libtiff"
depends_on "openjpeg"
depends_on "qt" => :optional
depends_on "qt5" => :optional
depends_on "little-cms2" => :optional
conflicts_with "pdftohtml", :because => "both install `pdftohtml` binaries"
resource "font-data" do
url "http://poppler.freedesktop.org/poppler-data-0.4.7.tar.gz"
sha256 "e752b0d88a7aba54574152143e7bf76436a7ef51977c55d6bd9a48dccde3a7de"
end
def install
ENV["LIBOPENJPEG_CFLAGS"] = "-I#{Formula["openjpeg"].opt_include}/openjpeg-1.5"
args = %W[
--disable-dependency-tracking
--prefix=#{prefix}
--enable-xpdf-headers
--enable-poppler-glib
--disable-gtk-test
--enable-introspection=yes
]
if build.with?("qt") && build.with?("qt5")
raise "poppler: --with-qt and --with-qt5 cannot be used at the same time"
elsif build.with? "qt"
args << "--enable-poppler-qt4"
elsif build.with? "qt5"
args << "--enable-poppler-qt5"
else
args << "--disable-poppler-qt4" << "--disable-poppler-qt5"
end
args << "--enable-cms=lcms2" if build.with? "little-cms2"
system "./configure", *args
system "make", "install"
resource("font-data").stage do
system "make", "install", "prefix=#{prefix}"
end
end
test do
system "#{bin}/pdfinfo", test_fixtures("test.pdf")
end
end