summaryrefslogtreecommitdiff
path: root/repo/poppler
diff options
context:
space:
mode:
authordavidovski <david@davidovski.xyz>2022-05-31 11:05:19 +0100
committerdavidovski <david@davidovski.xyz>2022-05-31 11:05:19 +0100
commit48ca75555522716f0f686dcae3dd6cf3d8ad714d (patch)
tree00c0f58550ba4661e87376f2f02c8001c69bae44 /repo/poppler
parent871b2b573f01c1b3176a0f65458b3d281b41c437 (diff)
removed idea of repos
Diffstat (limited to 'repo/poppler')
-rw-r--r--repo/poppler/dont-enforce-build-type.patch26
-rw-r--r--repo/poppler/poppler-glib.xibuild10
-rw-r--r--repo/poppler/poppler.xibuild29
3 files changed, 65 insertions, 0 deletions
diff --git a/repo/poppler/dont-enforce-build-type.patch b/repo/poppler/dont-enforce-build-type.patch
new file mode 100644
index 0000000..5296880
--- /dev/null
+++ b/repo/poppler/dont-enforce-build-type.patch
@@ -0,0 +1,26 @@
+diff --git a/cmake/modules/PopplerMacros.cmake b/cmake/modules/PopplerMacros.cmake
+index 2aed028..fdbe318 100644
+--- a/cmake/modules/PopplerMacros.cmake
++++ b/cmake/modules/PopplerMacros.cmake
+@@ -75,21 +75,6 @@ if(WIN32)
+ "${CMAKE_INSTALL_PREFIX}/bin" )
+ endif(WIN32)
+
+-if(NOT CMAKE_BUILD_TYPE AND NOT CMAKE_CONFIGURATION_TYPES)
+- set(CMAKE_BUILD_TYPE RelWithDebInfo)
+-endif(NOT CMAKE_BUILD_TYPE AND NOT CMAKE_CONFIGURATION_TYPES)
+-
+-string(TOUPPER "${CMAKE_BUILD_TYPE}" _CMAKE_BUILD_TYPE_UPPER)
+-set(_known_build_types RELWITHDEBINFO;RELEASE;DEBUG;DEBUGFULL;PROFILE)
+-# We override CMAKE_CXX_FLAGS_${_CMAKE_BUILD_TYPE_UPPER} below. If the user
+-# selects a CMAKE_BUILD_TYPE that is not handled by the logic below, we will
+-# end up dropping the previous flags (e.g. those set in a cross-compilation
+-# CMake toolchain file). To avoid surprising compilation errors, we emit an
+-# error in that case, so that the user can handle the passed CMAKE_BUILD_TYPE
+-# in the compiler flags logic below.
+-if (NOT "${_CMAKE_BUILD_TYPE_UPPER}" IN_LIST _known_build_types)
+- message(FATAL_ERROR "Unsupported CMAKE_BUILD_TYPE: ${CMAKE_BUILD_TYPE}")
+-endif()
+ set(_save_cflags "${CMAKE_C_FLAGS}")
+ set(_save_cxxflags "${CMAKE_CXX_FLAGS}")
+
diff --git a/repo/poppler/poppler-glib.xibuild b/repo/poppler/poppler-glib.xibuild
new file mode 100644
index 0000000..d6f31bf
--- /dev/null
+++ b/repo/poppler/poppler-glib.xibuild
@@ -0,0 +1,10 @@
+#!/bin/sh
+
+NAME="poppler-glib"
+DESC="Glib wrapper for poppler"
+DEPS="cairo freetype2 glib musl poppler"
+
+package () {
+ add_from_main "usr/lib/libpoppler-glib.so*" \
+ "usr/lib/girepository*"
+}
diff --git a/repo/poppler/poppler.xibuild b/repo/poppler/poppler.xibuild
new file mode 100644
index 0000000..9c10ee1
--- /dev/null
+++ b/repo/poppler/poppler.xibuild
@@ -0,0 +1,29 @@
+#!/bin/sh
+
+NAME="poppler"
+DESC="PDF rendering library based on xpdf 3.0"
+
+MAKEDEPS="cmake "
+DEPS="fontconfig freetype2 lcms2 libjpeg-turbo libpng musl openjpeg tiff "
+
+PKG_VER=22.05.0
+SOURCE="https://poppler.freedesktop.org/poppler-$PKG_VER.tar.xz"
+ADDITIONAL="dont-enforce-build-type.patch "
+
+build () {
+ cmake -B build \
+ -DCMAKE_INSTALL_PREFIX=/usr \
+ -DCMAKE_INSTALL_LIBDIR=lib \
+ -DENABLE_UNSTABLE_API_ABI_HEADERS=ON \
+ -DBUILD_QT5_TESTS=OFF \
+ -DENABLE_QT5=OFF \
+ -DCMAKE_CXX_FLAGS="$CXXFLAGS" \
+ -DCMAKE_C_FLAGS="$CFLAGS" \
+ -DENABLE_BOOST=OFF \
+
+ cmake --build build
+}
+
+package () {
+ DESTDIR="$PKG_DEST" cmake --install build
+}