# $Id: PKGBUILD 95688 2013-08-15 16:50:34Z bpiotrowski $ # Maintainer: Bartłomiej Piotrowski # Contributor: Brad Fanella # Contributor: Stefan Husmann # Contributor: Pierre-Paul Paquin # Contributor: xduugu pkgname=mupdf pkgver=1.3 pkgrel=1 pkgdesc='Lightweight PDF and XPS viewer' arch=('i686' 'x86_64') url='http://mupdf.com' license=('GPL3') depends=('desktop-file-utils' 'libxext' 'openssl') install=mupdf.install source=(https://mupdf.googlecode.com/files/$pkgname-$pkgver-source.tar.gz) sha256sums=('aba8b31bee9cc0a16abedab5e31c81c65996cba5591e62a50a79bea2a63d4478') build() { CFLAGS+=' -fPIC' CXXFLAGS+=' -fPIC' cd $pkgname-$pkgver-source make build=release } package() { cd $pkgname-$pkgver-source make build=release prefix="$pkgdir"/usr install cd platform/debian sed -i 's/mupdf.xpm/mupdf/' mupdf.desktop sed -i 's/application\/x-pdf/application\/x-pdf/' mupdf.desktop install -Dm644 mupdf.desktop "$pkgdir"/usr/share/applications/mupdf.desktop install -Dm644 mupdf.xpm "$pkgdir"/usr/share/pixmaps/mupdf.xpm chmod 644 "$pkgdir"/usr/lib/libmupdf{,-js-none}.a }