blob: 969c335b2b35d21ce741642a42ad36d68b60f43c (
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
48
49
50
51
|
# Maintainer : Martin Wimpress <code@flexion.org>
_pkgname=mate-document-viewer
pkgname=mate-document-viewer-libre
pkgver=1.6.2
pkgrel=2
pkgdesc="Simply a document viewer, with libarchive recommendation"
url="http://mate-desktop.org"
arch=('i686' 'x86_64' 'mips64el')
license=('GPL')
replaces=$_pkgname
conflicts=$_pkgname
provides=$_pkgname=$pkgver
depends=('dconf' 'dbus' 'desktop-file-utils' 'gtk2' 'libmatekeyring' 'libsm'
'libspectre' 'mate-desktop' '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'
'libarchive: 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"
}
|