22 lines
518 B
Plaintext
22 lines
518 B
Plaintext
# Description: Lightweight PDF and XPS viewer
|
|
# URL: http://www.mupdf.com/
|
|
# Maintainer: Juergen Daubert, jue at crux dot nu
|
|
# Depends on: glu xorg-libxrandr xorg-libxi
|
|
|
|
name=mupdf
|
|
version=1.14.0
|
|
release=1
|
|
source=(https://mupdf.com/downloads/archive/$name-$version-source.tar.xz)
|
|
|
|
build() {
|
|
cd $name-$version-source
|
|
|
|
export USE_SYSTEM_LIBS='no'
|
|
|
|
make XCFLAGS="-fpic"
|
|
make prefix=$PKG/usr mandir=$PKG/usr/share/man install
|
|
|
|
ln -s mupdf-gl $PKG/usr/bin/mupdf
|
|
rm -r $PKG/usr/share/doc
|
|
}
|