mxe/src/poppler.mk

67 lines
2.5 KiB
Makefile
Raw Normal View History

2012-04-17 20:07:25 +01:00
# This file is part of MXE.
# See index.html for further information.
PKG := poppler
$(PKG)_IGNORE :=
2015-01-05 15:41:50 +00:00
$(PKG)_VERSION := 0.30.0
$(PKG)_CHECKSUM := b616ee869d0b1f8a7a2c71cf346f55c1bff624cce4badebe17f506ec8ce7ddf5
2012-04-17 20:07:25 +01:00
$(PKG)_SUBDIR := poppler-$($(PKG)_VERSION)
2013-10-05 18:56:28 +01:00
$(PKG)_FILE := poppler-$($(PKG)_VERSION).tar.xz
2012-04-17 20:07:25 +01:00
$(PKG)_URL := http://poppler.freedesktop.org/$($(PKG)_FILE)
2015-09-23 08:41:16 +01:00
$(PKG)_DEPS := gcc cairo curl freetype glib jpeg lcms libpng qt tiff zlib
2012-04-17 20:07:25 +01:00
define $(PKG)_UPDATE
$(WGET) -q -O- 'http://poppler.freedesktop.org/' | \
2013-10-05 18:56:28 +01:00
$(SED) -n 's,.*"poppler-\([0-9.]\+\)\.tar\.xz".*,\1,p' | \
2012-04-17 20:07:25 +01:00
head -1
endef
define $(PKG)_BUILD
# Note: Specifying LIBS explicitly is necessary for configure to properly
# pick up libtiff (otherwise linking a minimal test program fails not
# because libtiff is not found, but because some references are
# undefined)
cd '$(1)' \
&& PATH='$(PREFIX)/$(TARGET)/qt/bin:$(PATH)' \
./configure \
$(MXE_CONFIGURE_OPTS) \
2012-04-17 20:07:25 +01:00
--disable-silent-rules \
--enable-xpdf-headers \
$(if $(filter qtbase,$($(PKG)_DEPS)), \
2016-06-08 14:41:52 +01:00
--enable-poppler-qt5 \
--disable-poppler-qt4, \
2016-06-09 13:40:36 +01:00
--disable-poppler-qt5 \
--enable-poppler-qt4) \
2012-04-17 20:07:25 +01:00
--enable-zlib \
--enable-cms=lcms2 \
2012-04-17 20:07:25 +01:00
--enable-libcurl \
--enable-libtiff \
--enable-libjpeg \
--enable-libpng \
--enable-poppler-glib \
--enable-poppler-cpp \
--enable-cairo-output \
--enable-splash-output \
--enable-compile-warnings=yes \
--enable-introspection=auto \
--disable-libopenjpeg \
--disable-gtk-test \
--disable-utils \
--disable-gtk-doc \
--disable-gtk-doc-html \
--disable-gtk-doc-pdf \
--with-font-configuration=win32 \
2014-02-09 17:45:23 +00:00
PKG_CONFIG_PATH_$(subst .,_,$(subst -,_,$(TARGET)))='$(PREFIX)/$(TARGET)/qt/lib/pkgconfig' \
2013-10-06 17:17:21 +01:00
CXXFLAGS=-D_WIN32_WINNT=0x0500 \
2012-12-30 11:20:18 +00:00
LIBTIFF_LIBS="`'$(TARGET)-pkg-config' libtiff-4 --libs`"
PATH='$(PREFIX)/$(TARGET)/qt/bin:$(PATH)' \
$(MAKE) -C '$(1)' -j '$(JOBS)' bin_PROGRAMS= sbin_PROGRAMS= noinst_PROGRAMS=
$(MAKE) -C '$(1)' -j 1 install bin_PROGRAMS= sbin_PROGRAMS= noinst_PROGRAMS=
2012-04-17 20:07:25 +01:00
# Test program
'$(TARGET)-g++' \
-W -Wall -Werror -ansi -pedantic \
'$(TEST_FILE)' -o '$(PREFIX)/$(TARGET)/bin/test-poppler.exe' \
2012-04-17 20:07:25 +01:00
`'$(TARGET)-pkg-config' poppler poppler-cpp --cflags --libs`
endef