blob: 8a574bd8c05eca1d4cafbe77cda653151d07f20c (
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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
|
# Contributor: Sören Tempel <soeren+alpine@soeren-tempel.net>
# Contributor: Michael Zhou <zhoumichaely@gmail.com>
# Maintainer: Daniel Sabogal <dsabogalcc@gmail.com>
pkgname=mupdf
pkgver=1.15.0
pkgrel=0
pkgdesc="Lightweight PDF and XPS viewer"
url="https://mupdf.com"
arch="all"
license="AGPL-3.0-or-later"
depends=""
makedepends="freetype-dev
harfbuzz-dev
jbig2dec-dev
jpeg-dev
openjpeg-dev
readline-dev
freeglut-dev
zlib-dev
libx11-dev
libxext-dev
libxrandr-dev
libxi-dev
mesa-dev
glu-dev"
subpackages="$pkgname-doc $pkgname-dev $pkgname-x11:_x11
$pkgname-gl:_gl $pkgname-tools:_tools"
options="!check"
source="https://mupdf.com/downloads/archive/$pkgname-$pkgver-source.tar.xz
shared-lib.patch
fix-big-endian.patch
"
# FIXME: shared linking of /usr/lib/libmupdf.so.0
# secfixes:
# 1.13-r0:
# - CVE-2018-1000051
# - CVE-2018-6544
# - CVE-2018-6192
# - CVE-2018-6187
# - CVE-2018-5686
# - CVE-2017-17858
# 1.11-r1:
# - CVE-2017-6060
# 1.10a-r2:
# - CVE-2017-5991
# 1.10a-r1:
# - CVE-2017-5896
builddir="$srcdir/$pkgname-$pkgver-source"
prepare() {
default_prepare
rm -rf thirdparty/{curl,freeglut,freetype,harfbuzz,jbig2dec,libjpeg,openjpeg,zlib}
}
build() {
cd "$builddir"
make USE_SYSTEM_LIBS=yes prefix=/usr CURL_LIBS='-lcurl -lpthread' build=release libs apps
}
package() {
cd "$builddir"
make USE_SYSTEM_LIBS=yes prefix=/usr DESTDIR="$pkgdir" install
cd build/release
local app; for app in muraster; do
install -Dm755 $app "$pkgdir"/usr/bin/$app
done
ln -s libmupdf.so.0 "$pkgdir"/usr/lib/libmupdf.so
ln -s libmupdfthird.so.0 "$pkgdir"/usr/lib/libmupdfthird.so
}
_x11() {
pkgdesc="$pkgdesc with X11 backend"
depends=""
mkdir -p "$subpkgdir"/usr/bin
mv "$pkgdir"/usr/bin/mupdf-x11 \
"$subpkgdir"/usr/bin/
ln -s /usr/bin/mupdf-x11 "$subpkgdir"/usr/bin/mupdf
}
_gl() {
pkgdesc="$pkgdesc with OpenGL backend"
depends=""
mkdir -p "$subpkgdir"/usr/bin
mv "$pkgdir"/usr/bin/mupdf-gl \
"$subpkgdir"/usr/bin/
}
_tools() {
pkgdesc="Tools for a lightweight PDF and XPS viewer"
depends=""
mkdir -p "$subpkgdir"/usr/bin
mv "$pkgdir"/usr/bin/mutool \
"$pkgdir"/usr/bin/muraster \
"$subpkgdir"/usr/bin/
}
sha512sums="ef19362e8b6c2843e214fd2fcdcc9ba91017884383f7e1cfe08ef1f528a233820475ddfdd8aef481e6e37ae69e8b64324eb4b30699baa8055e99e47c2fab31dd mupdf-1.15.0-source.tar.xz
5f1448005c2126c16f9e05a77486d63991110d343a4094e92d6877b11babb30b2a4c3a07580658e1e6caa805a53caf31595309c9f5203ed0a269e4d9e38af3d1 shared-lib.patch
486d09df319050ddb33dbd1e2e0638a7bc6a3e188032a35b81119c45b0de911629b827b21aa47cde6669b66d73fb22cff54d190a8449151fdc27eace71beefbd fix-big-endian.patch"
|