blob: 0b957061b1b570f197708da43fbc87e1fb6e65c4 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
|
# Maintainer:
pkgname=qpdf
pkgver=8.2.1
pkgrel=0
pkgdesc="Command-line tools and library for transforming PDF files"
url="http://qpdf.sourceforge.net"
arch="all"
license="Apache-2.0 OR Artistic-2.0"
depends=""
makedepends="bash libjpeg-turbo-dev zlib-dev"
checkdepends="coreutils perl"
subpackages="$pkgname-dev $pkgname-doc $pkgname-libs
$pkgname-fix-qdf:fix_qdf:noarch"
source="https://downloads.sourceforge.net/$pkgname/$pkgname-$pkgver.tar.gz"
# secfixes:
# 7.0.0-r0:
# - CVE-2017-9208
# - CVE-2017-9209
# - CVE-2017-9210
# - CVE-2017-11624
# - CVE-2017-11625
# - CVE-2017-11626
# - CVE-2017-11627
# - CVE-2017-12595
prepare() {
update_config_sub
default_prepare
}
build() {
cd "$builddir"
./configure \
--build=$CBUILD \
--host=$CHOST \
--prefix=/usr \
--sysconfdir=/etc \
--mandir=/usr/share/man \
--infodir=/usr/share/info \
--localstatedir=/var \
--disable-static
make
}
check() {
cd "$builddir"
make check
}
package() {
cd "$builddir"
make DESTDIR="$pkgdir" install
}
fix_qdf() {
depends="qpdf perl"
pkgdesc="Repair PDF files in QDF form after editing"
mkdir -p "$subpkgdir"/usr/bin
mv "$pkgdir"/usr/bin/fix-qdf "$subpkgdir"/usr/bin/
}
sha512sums="ef3aeb4a7ca3ec48ab62341533eedcb2a6d0985767317ab72c22f0c0ecfef6849bfdc34b1bcec6427c7bde166143adb409c895ff40d8be6628e6323e27697a8c qpdf-8.2.1.tar.gz"
|