wok annotate gtkhtml2_viewer/receipt @ rev 1241

iAdd: rssyl, rssyl-dev, gtkhtml2_viewer. claws-mail plugins.
author Eric Joseph-Alexandre <erjo@slitaz.org>
date Mon Aug 11 23:49:23 2008 +0200 (2008-08-11)
parents
children b510cc53cd09
rev   line source
erjo@1241 1 # SliTaz package receipt.
erjo@1241 2
erjo@1241 3 PACKAGE="gtkhtml2_viewer"
erjo@1241 4 VERSION="0.19"
erjo@1241 5 CATEGORY="netwoking"
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"
erjo@1241 11 WEB_SITE="http://www.claws-mail.org/downloads/plugins/$TARBALL"
erjo@1241 12 WGET_URL="http://www.claws-mail.org/plugins.php?section=downloads"
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