summaryrefslogtreecommitdiff
path: root/community/mupdf/PKGBUILD
blob: 1395fceae478ed179d439625ca25a1d853196f09 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
# $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=1.0
pkgrel=1
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' 'desktop-file-utils')
install=mupdf.install
source=("http://mupdf.com/download/$pkgname-$pkgver-source.tar.gz")
md5sums=('d986ab98e2b035b7abd61afc474562b3')

build() {
    CFLAGS+=" -fPIC"
    CXXFLAGS+=" -fPIC"

	cd "$srcdir"/$pkgname-$pkgver-source
	make build=release prefix="$pkgdir/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
}