wok annotate gtkhtml2_viewer/receipt @ rev 1713

get-*: add ROOT support
author Pascal Bellard <pascal.bellard@slitaz.org>
date Mon Nov 17 08:50:02 2008 +0000 (2008-11-17)
parents b510cc53cd09
children c186b215c435
rev   line source
erjo@1241 1 # SliTaz package receipt.
erjo@1241 2
erjo@1241 3 PACKAGE="gtkhtml2_viewer"
erjo@1241 4 VERSION="0.19"
pascal@1423 5 CATEGORY="network"
erjo@1241 6 SHORT_DESC="HTML Viwer plugins for claws-mail."
erjo@1241 7 MAINTAINER="erjo@slitaz.org"
erjo@1241 8 DEPENDS="curl claws-mail"
erjo@1241 9 BUILD_DEPENDS="curl-dev claws-mail-dev"
erjo@1241 10 TARBALL="$PACKAGE-$VERSION.tar.gz"
pankso@1280 11 WEB_SITE="http://www.claws-mail.org/plugins.php"
pankso@1280 12 WGET_URL="http://www.claws-mail.org/downloads/plugins/$TARBALL"
erjo@1241 13
erjo@1241 14 # Rules to configure and make the package.
erjo@1241 15 compile_rules()
erjo@1241 16 {
erjo@1241 17 cd $src
erjo@1241 18 ./configure --prefix=/usr \
erjo@1241 19 --infodir=/usr/share/info \
erjo@1241 20 --disable-accessibility \
erjo@1241 21 --mandir=/usr/share/man $CONFIGURE_ARGS
erjo@1241 22 make
erjo@1241 23 make DESTDIR=$PWD/_pkg install
erjo@1241 24 }
erjo@1241 25
erjo@1241 26 # Rules to gen a SliTaz package suitable for Tazpkg.
erjo@1241 27 genpkg_rules()
erjo@1241 28 {
erjo@1241 29 mkdir -p $fs/usr/lib/claws-mail/plugins
erjo@1241 30 cp -a $_pkg/usr/lib/claws-mail/plugins/*.so* $fs/usr/lib/claws-mail/plugins/
erjo@1241 31 }
erjo@1241 32