wok annotate epdfview/receipt @ rev 13481

busybox: use slitaz-base httphelper.sh
author Pascal Bellard <pascal.bellard@slitaz.org>
date Thu Oct 11 13:43:57 2012 +0200 (2012-10-11)
parents 4d8d4417d2f5
children f6cec36345bb
rev   line source
pankso@46 1 # SliTaz package receipt.
pankso@46 2
pankso@46 3 PACKAGE="epdfview"
slaxemulator@11103 4 VERSION="0.1.8"
pankso@205 5 CATEGORY="office"
pankso@46 6 SHORT_DESC="Lightweight PDF document viewer using Poppler."
pankso@46 7 MAINTAINER="pankso@slitaz.org"
pankso@46 8 TARBALL="$PACKAGE-$VERSION.tar.gz"
pankso@46 9 WEB_SITE="http://trac.emma-soft.com/epdfview/"
pankso@46 10 WGET_URL="http://trac.emma-soft.com/epdfview/chrome/site/releases/$TARBALL"
jozee@4935 11 TAGS="pdf viewer"
pankso@46 12
slaxemulator@11103 13 DEPENDS="gtk+ poppler glib libpng xorg-libXdamage gcc-lib-base"
slaxemulator@11103 14 BUILD_DEPENDS="gtk+-dev poppler-dev poppler"
slaxemulator@11103 15
pankso@46 16 # Rules to configure and make the package.
pankso@46 17 compile_rules()
pankso@46 18 {
pankso@46 19 cd $src
pascal@12759 20 sed -i 's/<config.h>/&\n#include <stdio.h>\n#define g_fopen fopen/' \
pascal@12759 21 src/epdfview.h
pascal@12759 22 find . -name '*.[ch]*' | xargs sed -i 's|<glib/.*h|<glib.h|'
gokhlayeh@11491 23 patch -Np1 -i $stuff/0001-When-using-Poppler-0.17.0-I-needed-to-swap-the-blue-.patch
pankso@671 24 ./configure \
sygne@1681 25 --without-cups \
pascal@1514 26 $CONFIGURE_ARGS &&
slaxemulator@11103 27 make && make install
pankso@46 28 }
pankso@46 29
pankso@46 30 # Rules to gen a SliTaz package suitable for Tazpkg.
pankso@46 31 genpkg_rules()
pankso@46 32 {
pankso@671 33 mkdir -p $fs/usr/share/pixmaps
slaxemulator@11103 34 cp -a $install/usr/bin $fs/usr
slaxemulator@11103 35 cp -a $install/usr/share/epdfview $fs/usr/share
pankso@682 36 cd $fs/usr/share/pixmaps
slaxemulator@11103 37 ln -sf /usr/share/epdfview/pixmaps/icon_epdfview-32.png epdfview.png
pankso@46 38 }
pankso@46 39