opt/qpdf/Pkgfile

28 lines
839 B
Plaintext

# Description: Utility that does structural, content-preserving transformations on PDF files
# URL: http://qpdf.sourceforge.net/
# Maintainer: Juergen Daubert, jue at crux dot nu
# Depends on: libpcre zlib
name=qpdf
version=6.0.0
release=3
source=(http://downloads.sourceforge.net/project/$name/$name/$version/$name-$version.tar.gz
qpdf-6.0.0-detect-recursions.patch
qpdf-6.0.0-CVE-2017-9208.patch
qpdf-6.0.0-CVE-2017-9209.patch
qpdf-6.0.0-CVE-2017-9210.patch)
build() {
cd $name-$version
patch -p1 -i $SRC/qpdf-6.0.0-detect-recursions.patch
patch -p1 -i $SRC/qpdf-6.0.0-CVE-2017-9208.patch
patch -p1 -i $SRC/qpdf-6.0.0-CVE-2017-9209.patch
patch -p1 -i $SRC/qpdf-6.0.0-CVE-2017-9210.patch
./configure --prefix=/usr
make
make DESTDIR=$PKG install
rm -r $PKG/usr/share/doc
}