wok-6.x view epdfview/receipt @ rev 11291
firefox-langpack-*: Fixed all $TARBALL to be saved as $PACKAGE-$VERSION.zip. This is so it doesn't use the older $LANG.xpi files on tank.
author | Christopher Rogers <slaxemulator@gmail.com> |
---|---|
date | Fri Nov 11 07:15:49 2011 +0000 (2011-11-11) |
parents | d1768332cee0 |
children | 4d8d4417d2f5 |
line source
1 # SliTaz package receipt.
3 PACKAGE="epdfview"
4 VERSION="0.1.8"
5 CATEGORY="office"
6 SHORT_DESC="Lightweight PDF document viewer using Poppler."
7 MAINTAINER="pankso@slitaz.org"
8 TARBALL="$PACKAGE-$VERSION.tar.gz"
9 WEB_SITE="http://trac.emma-soft.com/epdfview/"
10 WGET_URL="http://trac.emma-soft.com/epdfview/chrome/site/releases/$TARBALL"
11 TAGS="pdf viewer"
13 DEPENDS="gtk+ poppler glib libpng xorg-libXdamage gcc-lib-base"
14 BUILD_DEPENDS="gtk+-dev poppler-dev poppler"
16 # Rules to configure and make the package.
17 compile_rules()
18 {
19 cd $src
20 ./configure \
21 --without-cups \
22 $CONFIGURE_ARGS &&
23 make && make install
24 }
26 # Rules to gen a SliTaz package suitable for Tazpkg.
27 genpkg_rules()
28 {
29 mkdir -p $fs/usr/share/pixmaps
30 cp -a $install/usr/bin $fs/usr
31 cp -a $install/usr/share/epdfview $fs/usr/share
32 cd $fs/usr/share/pixmaps
33 ln -sf /usr/share/epdfview/pixmaps/icon_epdfview-32.png epdfview.png
34 }