summaryrefslogtreecommitdiff
path: root/community/mupdf/PKGBUILD
diff options
context:
space:
mode:
authorroot <root@rshg054.dnsready.net>2012-04-27 00:01:30 +0000
committerroot <root@rshg054.dnsready.net>2012-04-27 00:01:30 +0000
commit5233daa5825f00ccf0722ef9733ea6b3bbd44bc8 (patch)
tree9efe4d061ff3f921e97518a8bc84d504bc88e6fc /community/mupdf/PKGBUILD
parent4a6f4c864badccdbf9756bc45218273796fa6d72 (diff)
Fri Apr 27 00:01:30 UTC 2012
Diffstat (limited to 'community/mupdf/PKGBUILD')
-rw-r--r--community/mupdf/PKGBUILD39
1 files changed, 13 insertions, 26 deletions
diff --git a/community/mupdf/PKGBUILD b/community/mupdf/PKGBUILD
index 1817f38ac..1395fceae 100644
--- a/community/mupdf/PKGBUILD
+++ b/community/mupdf/PKGBUILD
@@ -1,13 +1,13 @@
-# $Id: PKGBUILD 67364 2012-03-10 11:47:55Z bpiotrowski $
-# Maintainer: Bartłomiej Piotrowski
+# $Id: PKGBUILD 69884 2012-04-25 14:08:08Z bpiotrowski $
+# Maintainer: Bartłomiej Piotrowski <nospam@bpiotrowski.pl>
# 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=2
+pkgver=1.0
+pkgrel=1
pkgdesc="lightweight PDF viewer and toolkit written in portable C"
arch=('i686' 'x86_64')
url="http://mupdf.com"
@@ -15,38 +15,25 @@ license=('GPL3')
depends=('freetype2' 'libjpeg' 'jbig2dec' 'openjpeg' 'libxext' 'desktop-file-utils')
install=mupdf.install
source=("http://mupdf.com/download/$pkgname-$pkgver-source.tar.gz")
-md5sums=('76640ee16a797a27fe49cc0eaa87ce3a')
+md5sums=('d986ab98e2b035b7abd61afc474562b3')
build() {
CFLAGS+=" -fPIC"
CXXFLAGS+=" -fPIC"
- cd "$srcdir/$pkgname-$pkgver"
+ cd "$srcdir"/$pkgname-$pkgver-source
make build=release prefix="$pkgdir/usr"
}
package() {
- # Install
- cd "$srcdir/$pkgname-$pkgver"
- make build=release prefix="${pkgdir}/usr" install
+ cd "$srcdir"/$pkgname-$pkgver-source
+ make build=release prefix="$pkgdir/usr" install
- # Rename executables
- msg "Renaming executables"
- cd "${pkgdir}/usr/bin"
- for i in pdf*; do
- mv "$i" "$i-mupdf";
- done
+ sed -i 's/mupdf.xpm/mupdf/' debian/mupdf.desktop
+ sed -i 's/application\/x-pdf/application\/x-pdf/' debian/mupdf.desktop
- # 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
+ install -Dm644 debian/mupdf.desktop "$pkgdir"/usr/share/applications/mupdf.desktop
+ install -Dm644 debian/mupdf.xpm "$pkgdir"/usr/share/pixmaps/mupdf.xpm
- # Install other stuff
- 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}
+ chmod 644 "$pkgdir"/usr/lib/libfitz.a
}