blob: 3b52267c52273d7eefd19b8a05154bc764f33fd6 (
plain)
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
64
65
66
67
68
|
# Maintainer: Natanael Copa <ncopa@alpinelinux.org>
pkgname=qpdf
pkgver=8.0.2
pkgrel=0
pkgdesc="Command-line tools and library for transforming PDF files"
url="http://qpdf.sourceforge.net"
arch="all"
license="Apache-2.0"
depends=""
makedepends="zlib-dev libjpeg-turbo-dev bash"
checkdepends="coreutils perl"
install=""
subpackages="$pkgname-dev
$pkgname-doc
$pkgname-libs
$pkgname-fix-qdf:fix_qdf:noarch
"
source="https://downloads.sourceforge.net/sourceforge/$pkgname/$pkgname-$pkgver.tar.gz"
builddir="$srcdir/$pkgname-$pkgver"
# 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="f6d062f011d87f3f1df44e96e5dec0cd4b1b5f800dc6c088bf1313b2c96922d2f3c1b6eb1109a6ef00c558144b85dc20aeb85f937b73a3b594633aa67104f5e3 qpdf-8.0.2.tar.gz"
|