wok-6.x annotate evince/receipt @ rev 4916
Add zsync
author | Pascal Bellard <pascal.bellard@slitaz.org> |
---|---|
date | Mon Feb 15 09:50:33 2010 +0100 (2010-02-15) |
parents | |
children | 31c985a0bd3d |
rev | line source |
---|---|
erjo@4727 | 1 # SliTaz package receipt. |
erjo@4727 | 2 |
erjo@4727 | 3 PACKAGE="evince" |
erjo@4727 | 4 VERSION="2.29.4" |
erjo@4727 | 5 CATEGORY="office" |
erjo@4727 | 6 SHORT_DESC="Document viewer for Gnome" |
erjo@4727 | 7 MAINTAINER="erjo@slitaz.org" |
erjo@4727 | 8 DEPENDS="lcms poppler tiff" |
erjo@4727 | 9 BUILD_DEPENDS="gnome-doc-utils-dev gnome-icon-theme lcms-dev poppler-dev gtk+-dev tiff-dev" |
erjo@4727 | 10 TARBALL="$PACKAGE-$VERSION.tar.bz2" |
erjo@4727 | 11 WEB_SITE="http://projects.gnome.org/evince/" |
erjo@4727 | 12 WGET_URL="http://ftp.gnome.org/pub/GNOME/sources/evince/${VERSION%.*}/${TARBALL}" |
erjo@4727 | 13 |
erjo@4727 | 14 # Rules to configure and make the package. |
erjo@4727 | 15 compile_rules() |
erjo@4727 | 16 { |
erjo@4727 | 17 cd $src |
erjo@4727 | 18 ./configure --prefix=/usr \ |
erjo@4727 | 19 --libexecdir=/usr/lib/$PACKAGE \ |
erjo@4727 | 20 --disable-nautilus \ |
erjo@4727 | 21 --disable-scrollkeeper \ |
erjo@4727 | 22 --disable-comics \ |
erjo@4727 | 23 --without-gconf \ |
erjo@4727 | 24 --without-keyring \ |
erjo@4727 | 25 --disable-schemas-install \ |
erjo@4727 | 26 --disable-gtk-doc-html \ |
erjo@4727 | 27 --with-help-formats=none \ |
erjo@4727 | 28 $CONFIGURE_ARGS && |
erjo@4727 | 29 make && make DESTDIR=$PWD/_pkg install |
erjo@4727 | 30 } |
erjo@4727 | 31 |
erjo@4727 | 32 # Rules to gen a SliTaz package suitable for Tazpkg. |
erjo@4727 | 33 genpkg_rules() |
erjo@4727 | 34 { |
erjo@4727 | 35 mkdir -p $fs/usr/share $fs/usr/lib |
erjo@4727 | 36 cp -a $_pkg/usr/bin $fs/usr |
erjo@4727 | 37 cp -a $_pkg/usr/lib/*.so* $fs/usr/lib |
erjo@4727 | 38 cp -a $_pkg/usr/lib/evince $fs/usr/lib |
erjo@4727 | 39 |
erjo@4727 | 40 cp -a $_pkg/usr/share/dbus-1 $fs/usr/share |
erjo@4727 | 41 cp -a $_pkg/usr/share/icons $fs/usr/share |
erjo@4727 | 42 cp -a $_pkg/usr/share/evince $fs/usr/share |
erjo@4727 | 43 |
erjo@4727 | 44 # Removing unwanted files |
erjo@4727 | 45 find $fs/usr/lib -name "*.*a" -exec rm -rf {} \; |
erjo@4727 | 46 } |