summaryrefslogtreecommitdiff
path: root/community/mupdf
diff options
context:
space:
mode:
authorroot <root@rshg054.dnsready.net>2012-03-12 00:01:32 +0000
committerroot <root@rshg054.dnsready.net>2012-03-12 00:01:32 +0000
commita6cb3ddef295c5feb4e03ee198dbb31cdf62d518 (patch)
tree4ea0c57a9a347779a3d69ebee2dc54d994a30235 /community/mupdf
parent4640048ddd1331c9f6fc14b8921ccecdb6b1ea11 (diff)
Mon Mar 12 00:01:32 UTC 2012
Diffstat (limited to 'community/mupdf')
-rw-r--r--community/mupdf/PKGBUILD18
1 files changed, 12 insertions, 6 deletions
diff --git a/community/mupdf/PKGBUILD b/community/mupdf/PKGBUILD
index 3f5a016fd..1817f38ac 100644
--- a/community/mupdf/PKGBUILD
+++ b/community/mupdf/PKGBUILD
@@ -1,28 +1,31 @@
-# $Id: PKGBUILD 55364 2011-09-10 10:56:13Z pschmitz $
-# Maintainer: Brad Fanella <bradfanella@archlinux.us>
+# $Id: PKGBUILD 67364 2012-03-10 11:47:55Z bpiotrowski $
+# Maintainer: Bartłomiej Piotrowski
+# Contributor: Brad Fanella <bradfanella@archlinux.us>
# Contributor: Stefan Husmann <stefan-husmann@t-online.de>
# Contributor: Pierre-Paul Paquin <pierrepaulpaquin@gmail.com>
# Contributor: xduugu (.desktop and install files)
pkgname=mupdf
pkgver=0.9
-pkgrel=1
+pkgrel=2
pkgdesc="lightweight PDF viewer and toolkit written in portable C"
arch=('i686' 'x86_64')
url="http://mupdf.com"
license=('GPL3')
-depends=('freetype2' 'libjpeg' 'jbig2dec' 'openjpeg' 'libxext')
+depends=('freetype2' 'libjpeg' 'jbig2dec' 'openjpeg' 'libxext' 'desktop-file-utils')
install=mupdf.install
source=("http://mupdf.com/download/$pkgname-$pkgver-source.tar.gz")
md5sums=('76640ee16a797a27fe49cc0eaa87ce3a')
build() {
+ CFLAGS+=" -fPIC"
+ CXXFLAGS+=" -fPIC"
+
cd "$srcdir/$pkgname-$pkgver"
make build=release prefix="$pkgdir/usr"
}
package() {
-
# Install
cd "$srcdir/$pkgname-$pkgver"
make build=release prefix="${pkgdir}/usr" install
@@ -34,8 +37,8 @@ package() {
mv "$i" "$i-mupdf";
done
- cd "$srcdir/$pkgname-$pkgver"
# Fix mupdf.desktop
+ cd "$srcdir/$pkgname-$pkgver"
sed -i "s/mupdf.xpm/mupdf/" debian/mupdf.desktop
sed -i "s/application\/x-pdf/application\/x-pdf/" debian/mupdf.desktop
@@ -43,4 +46,7 @@ package() {
cd "$srcdir/$pkgname-$pkgver/debian"
install -Dm644 mupdf.desktop "$pkgdir/usr/share/applications/mupdf.desktop"
install -Dm644 mupdf.xpm "$pkgdir/usr/share/pixmaps/mupdf.xpm"
+
+ # Fix permissions
+ chmod 644 $pkgdir/usr/lib/{libmuxps.a,libfitz.a,libmupdf.a}
}