mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2026-01-02 07:11:47 +01:00
41 lines
912 B
Plaintext
41 lines
912 B
Plaintext
# Maintainer: Michael Zhou <zhoumichaely@gmail.com>
|
|
pkgname=mupdf
|
|
pkgver=0.8.165
|
|
pkgrel=0
|
|
pkgdesc="a lightweight PDF and XPS viewer"
|
|
url="http://mupdf.com"
|
|
arch="x86 x86_64"
|
|
license="GPLv3"
|
|
depends=""
|
|
makedepends="pkgconfig freetype-dev jpeg-dev jbig2dec-dev libx11-dev libxext-dev openjpeg-dev"
|
|
install=""
|
|
subpackages="$pkgname-doc"
|
|
source="
|
|
http://$pkgname.googlecode.com/files/$pkgname-$pkgver-source.tar.gz
|
|
destdir.patch"
|
|
|
|
_builddir="$srcdir/$pkgname-$pkgver"
|
|
prepare() {
|
|
local i
|
|
cd "$_builddir"
|
|
for i in $source; do
|
|
case $i in
|
|
*.patch) msg $i; patch -p1 -i "$srcdir"/$i || return 1;;
|
|
esac
|
|
done
|
|
}
|
|
|
|
build() {
|
|
cd "$_builddir"
|
|
make prefix=/usr || return 1
|
|
}
|
|
|
|
package() {
|
|
cd "$_builddir"
|
|
make prefix=/usr DESTDIR="$pkgdir" install || return 1
|
|
rm -f "$pkgdir"/usr/lib/*.la
|
|
}
|
|
|
|
md5sums="a95813737924e60d87a944d52b6a5120 mupdf-0.8.165-source.tar.gz
|
|
08c8b77b80544abc65160e4b77f6f328 destdir.patch"
|