opt/qpdf/Pkgfile

22 lines
672 B
Plaintext
Raw Normal View History

2012-10-27 16:07:34 +02:00
# Description: Utility that does structural, content-preserving transformations on PDF files
2021-02-24 11:49:38 +01:00
# URL: http://qpdf.sourceforge.net/
# Maintainer: Juergen Daubert, jue at crux dot nu
# Depends on: cmake libjpeg-turbo openssl zlib
2021-02-24 11:49:38 +01:00
# Optional: gnutls
2012-10-27 16:07:34 +02:00
name=qpdf
2023-07-10 12:00:46 +02:00
version=11.5.0
release=1
source=(http://downloads.sourceforge.net/project/$name/$name/$version/$name-$version.tar.gz)
2012-10-27 16:07:34 +02:00
build() {
2023-02-26 15:32:29 +01:00
cmake -S $name-$version -B build -G Ninja \
-D CMAKE_INSTALL_PREFIX=/usr \
-D CMAKE_INSTALL_LIBDIR=/usr/lib \
-D CMAKE_BUILD_TYPE=Release \
-D CMAKE_CXX_FLAGS_RELEASE="$CXXFLAGS"
cmake --build build -j ${JOBS:-1}
DESTDIR=$PKG cmake --install build
2021-02-24 11:49:38 +01:00
rm -r $PKG/usr/share/doc
2012-10-27 16:07:34 +02:00
}