homebrew-core/Formula/poppler.rb
2017-11-05 10:52:18 -08:00

88 lines
2.6 KiB
Ruby

class Poppler < Formula
desc "PDF rendering library (based on the xpdf-3.0 code base)"
homepage "https://poppler.freedesktop.org/"
url "https://poppler.freedesktop.org/poppler-0.61.0.tar.xz"
sha256 "53cde17a2afa3b73eb8b209d24e4369b52bfac444065dbb0a8cbcc7356582b7f"
bottle do
sha256 "cc93d0fe33c51c4b34343f5a0741dd15f5ab1267758601d82a58bdcbf7e0ee12" => :high_sierra
sha256 "3840e4e782fb50e889b7840c93ab338464c296f8107f3a0cbc33f3614dadf94c" => :sierra
sha256 "c04f2f8df8b1c79b40cc15ca192ad06b23f73d6f02114a20cd9dfc264354e4df" => :el_capitan
end
option "with-qt", "Build Qt5 backend"
option "with-little-cms2", "Use color management system"
deprecated_option "with-qt4" => "with-qt"
deprecated_option "with-qt5" => "with-qt"
deprecated_option "with-lcms2" => "with-little-cms2"
depends_on "cmake" => :build
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 "little-cms2" => :optional
conflicts_with "pdftohtml", "pdf2image", "xpdf",
:because => "poppler, pdftohtml, pdf2image, and xpdf install conflicting executables"
resource "font-data" do
url "https://poppler.freedesktop.org/poppler-data-0.4.8.tar.gz"
sha256 "1096a18161f263cccdc6d8a2eb5548c41ff8fcf9a3609243f1b6296abdf72872"
end
needs :cxx11 if build.with?("qt") || MacOS.version < :mavericks
def install
ENV.cxx11 if build.with?("qt") || MacOS.version < :mavericks
args = std_cmake_args + %W[
-DENABLE_XPDF_HEADERS=ON
-DENABLE_GLIB=ON
-DBUILD_GTK_TESTS=OFF
-DWITH_GObjectIntrospection=ON
-DENABLE_QT4=OFF
-DCMAKE_INSTALL_INCLUDEDIR=#{include}
-DCMAKE_INSTALL_LIBDIR=#{lib}
]
if build.with? "qt"
args << "-DENABLE_QT5=ON"
else
args << "-DENABLE_QT5=OFF"
end
if build.with? "little-cms2"
args << "-DENABLE_CMS=lcms2"
else
args << "-DENABLE_CMS=OFF"
end
system "cmake", ".", *args
system "make", "install"
resource("font-data").stage do
system "make", "install", "prefix=#{prefix}"
end
libpoppler = (lib/"libpoppler.dylib").readlink
["#{lib}/libpoppler-cpp.dylib", "#{lib}/libpoppler-glib.dylib",
*Dir["#{bin}/*"]].each do |f|
macho = MachO.open(f)
macho.change_dylib("@rpath/#{libpoppler}", "#{lib}/#{libpoppler}")
macho.write!
end
end
test do
system "#{bin}/pdfinfo", test_fixtures("test.pdf")
end
end