wok view atril/receipt @ rev 19495

Up cryptsetup (1.7.3)
author Pascal Bellard <pascal.bellard@slitaz.org>
date Tue Nov 15 15:25:39 2016 +0100 (2016-11-15)
parents e481e85001c2
children 0812d027f57c
line source
1 # SliTaz package receipt.
3 PACKAGE="atril"
4 VERSION="1.8.0"
5 CATEGORY="utilities"
6 LICENSE="GPL3"
7 SHORT_DESC="A document viewer for MATE."
8 MAINTAINER="yuripourre@gmail.com"
9 WEB_SITE="http://www.mate-desktop.org/"
10 TARBALL="$PACKAGE-$VERSION.tar.gz"
11 WGET_URL="https://github.com/mate-desktop/$PACKAGE/archive/$TARBALL"
13 DEPENDS="gtk+ mate-desktop libsecret poppler mate-icon-theme \
14 desktop-file-utils djvulibre libspectre zlib"
15 BUILD_DEPENDS="wget autoconf automake libtool itstool yelp-tools \
16 gtk+-dev gtk-doc mate-desktop-dev mate-common-dev mate-icon-theme \
17 libsecret-dev caja-dev poppler-dev util-linux-uuid-dev lcms-dev \
18 libgcrypt-dev djvulibre-dev"
20 # Rules to configure and make the package.
21 compile_rules()
22 {
23 ./autogen.sh \
24 --prefix=/usr \
25 $CONFIGURE_ARGS &&
26 make &&
27 make DESTDIR=$DESTDIR install
28 }
30 # Rules to gen a SliTaz package suitable for Tazpkg.
31 genpkg_rules()
32 {
33 mkdir -p $fs/usr/lib
35 cp -a $install/usr/bin $fs/usr
36 cp -a $install/usr/share $fs/usr
37 cp -a $install/usr/libexec $fs/usr
38 cp -a $install/usr/lib/*.so* $fs/usr/lib
39 cp -a $install/usr/lib/atril $fs/usr/lib
40 cp -a $install/usr/lib/caja $fs/usr/lib
41 cp -a $install/usr/lib/pkgconfig $fs/usr/lib
42 # Saving some space
43 rm -r $fs/usr/share/man $fs/usr/share/help
44 }