opt/mupdf/Pkgfile

28 lines
633 B
Plaintext
Raw Normal View History

2013-01-21 16:55:05 +01:00
# Description: Lightweight PDF and XPS viewer
2021-10-06 17:17:42 +02:00
# URL: https://www.mupdf.com/
# Maintainer: Juergen Daubert, jue at crux dot nu
# Depends on: glu libglvnd harfbuzz libjpeg-turbo xorg-libxi
2013-01-21 16:55:05 +01:00
name=mupdf
2021-10-06 17:17:42 +02:00
version=1.19.0
2017-12-14 13:31:58 +01:00
release=1
2018-10-09 13:21:45 +02:00
source=(https://mupdf.com/downloads/archive/$name-$version-source.tar.xz)
2013-01-21 16:55:05 +01:00
build() {
2021-10-06 17:17:42 +02:00
cd $name-$version-source
2021-10-06 17:17:42 +02:00
export USE_SYSTEM_LIBS='yes'
2021-10-06 17:17:42 +02:00
make install \
prefix=$PKG/usr \
mandir=$PKG/usr/share/man \
XCFLAGS="-fpic -fcommon" \
USE_SYSTEM_JBIG2DEC='no' \
USE_SYSTEM_OPENJPEG='no' \
USE_SYSTEM_GLUT='no' \
USE_SYSTEM_GUMBO='no'
2021-10-06 17:17:42 +02:00
ln -s mupdf-gl $PKG/usr/bin/mupdf
rm -r $PKG/usr/share/doc
2018-10-09 13:21:45 +02:00
}