blob: 815658e87d340c326e9831bca0a4a7d9e29e9570 (
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
|
# Maintainer: Gaetan Bisson <bisson@archlinux.org>
# Contributor: Stefan Husmann <stefan-husmannt-online.de>
# Contributor: Army <uli armbruster>
pkgname=mupdf-git
_pkgname=mupdf
pkgver=20240805.fac9da1c7
pkgrel=1
pkgdesc='Lightweight PDF, XPS, and E-book viewer'
arch=(x86_64 armv7h aarch64)
url=https://mupdf.com/
license=(AGPL3)
makedepends=(git glu libxi)
depends=(gumbo-parser harfbuzz jbig2dec libarchive libgl
libjpeg-turbo libxrandr mujs openjpeg2)
source=(git://git.ghostscript.com/mupdf.git
git://git.ghostscript.com/thirdparty-{extract,freeglut,lcms2}.git
desktop)
sha256sums=(SKIP
SKIP SKIP SKIP
ccff66979249bd4ab4ba8918660f194eb90eb0ae231b16e36a6cecdcf471883f)
conflicts=(${_pkgname}{,-gl,-tools})
provides=(${_pkgname}{,-gl,-tools})
pkgver() {
cd "${srcdir}/${_pkgname}"
git log -1 --format='%cd.%h' --date=short | tr -d -
}
prepare() {
cd "${srcdir}/${_pkgname}"
rm -fr thirdparty/*
cp -a ../thirdparty-* thirdparty
rename thirdparty- '' thirdparty/*
}
build() {
cd "${srcdir}/${_pkgname}"
export USE_SYSTEM_LIBS=yes
export CFLAGS+=' -D TOFU_CJK -D TOFU_NOTO' # only embed Base14 fonts and Charis SIL
sed 's/$(HAVE_X11)/no/g' -i Makefile # prevent building useless binaries
sed 's/$(USE_SYSTEM_MUJS)/yes/g' -i Makethird
sed 's/$(USE_SYSTEM_GLUT)/no/g' -i Makethird Makefile
make archive=yes build=release
}
package() {
cd "${srcdir}/${_pkgname}"
make archive=yes install DESTDIR="${pkgdir}" prefix=/usr
mv "${pkgdir}"/usr/bin/mupdf{-gl,}
rm -fr "${pkgdir}"/usr/{include,lib}
find "${pkgdir}"/usr/share -type f -exec chmod 0644 {} +
install -Dm644 ../desktop "${pkgdir}"/usr/share/applications/mupdf.desktop
}
|