summaryrefslogtreecommitdiff
path: root/community/mate-document-viewer/PKGBUILD
blob: cb761aa84adbeef003492390632e50f0af4e6732 (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
40
41
42
43
44
45
46
47
# Maintainer : Martin Wimpress <code@flexion.org>

pkgname=mate-document-viewer
pkgver=1.6.2
pkgrel=1
pkgdesc="Simply a document viewer"
url="http://mate-desktop.org"
arch=('i686' 'x86_64')
license=('GPL')
depends=('dconf' 'dbus' 'desktop-file-utils' 'gtk2' 'libmatekeyring' 'libsm'
         'libspectre' 'mate-icon-theme' 'poppler-glib' 'zlib')
makedepends=('djvulibre' 'gobject-introspection' 'libgxps' 'mate-common'
             'mate-doc-utils' 'mate-file-manager' 'perl-xml-parser' 'texlive-bin')
optdepends=('djvulibre: DjVu support'
            'libgxps: XPS support'
            'mate-file-manager: Document Properties extension'
            'p7zip: cbz and cb7 compressed comic books'
            'texlive-bin: DVI support'
            'unrar: cbr compressed comic books')
options=('!emptydirs')
groups=('mate-extra')
source=("http://pub.mate-desktop.org/releases/1.6/${pkgname}-${pkgver}.tar.xz")
sha1sums=('295a59e7b7babd86f42eebb2a9ac5405dd7b2997')
install=${pkgname}.install

build() {
    cd "${srcdir}/${pkgname}-${pkgver}"
    ./configure \
        --prefix=/usr \
        --libexecdir=/usr/lib/${pkgname} \
        --enable-gtk-doc \
        --enable-djvu \
        --enable-dvi \
        --enable-t1lib \
        --enable-pixbuf \
        --enable-comics \
        --enable-introspection \
        --disable-static \
        --disable-scrollkeeper
    make
}

package() {
    cd "${srcdir}/${pkgname}-${pkgver}"
    make DESTDIR="${pkgdir}" install
    ln -s atril "${pkgdir}/usr/bin/mate-document-viewer"
}