# $Id: PKGBUILD 87740 2013-04-05 21:06:47Z bpiotrowski $ # Maintainer: Bartłomiej Piotrowski # Contributor: Brad Fanella # Contributor: Stefan Husmann # Contributor: Pierre-Paul Paquin # Contributor: xduugu (.desktop and install files) pkgname=mupdf pkgver=1.2 pkgrel=2 pkgdesc='Lightweight PDF and XPS viewer' arch=('i686' 'x86_64') url='http://mupdf.com' license=('GPL3') depends=('freetype2' 'libjpeg' 'jbig2dec' 'openjpeg' 'libxext' 'desktop-file-utils' 'xdg-utils') install=mupdf.install source=(https://mupdf.googlecode.com/files/$pkgname-$pkgver-source.zip) sha256sums=('9bc9e31ec27c091dad37f70940bd799e46ab6da4299bc58e803bff3dbb07dc3b') build() { CFLAGS+=' -fPIC' CXXFLAGS+=' -fPIC' cd "$srcdir"/$pkgname-$pkgver-source rm -rf thirdparty make build=release prefix=/usr } package() { cd "$srcdir"/$pkgname-$pkgver-source make build=release prefix="$pkgdir"/usr install sed -i 's/mupdf.xpm/mupdf/' debian/mupdf.desktop sed -i 's/application\/x-pdf/application\/x-pdf/' debian/mupdf.desktop install -Dm644 debian/mupdf.desktop "$pkgdir"/usr/share/applications/mupdf.desktop install -Dm644 debian/mupdf.xpm "$pkgdir"/usr/share/pixmaps/mupdf.xpm chmod 644 "$pkgdir"/usr/lib/libfitz.a }