wok view 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
line source
1 # SliTaz package receipt.
3 PACKAGE="gtkhtml2_viewer"
4 VERSION="0.19"
5 CATEGORY="network"
6 SHORT_DESC="HTML Viwer plugins for claws-mail."
7 MAINTAINER="erjo@slitaz.org"
8 DEPENDS="curl claws-mail"
9 BUILD_DEPENDS="curl-dev claws-mail-dev"
10 TARBALL="$PACKAGE-$VERSION.tar.gz"
11 WEB_SITE="http://www.claws-mail.org/plugins.php"
12 WGET_URL="http://www.claws-mail.org/downloads/plugins/$TARBALL"
14 # Rules to configure and make the package.
15 compile_rules()
16 {
17 cd $src
18 ./configure --prefix=/usr \
19 --infodir=/usr/share/info \
20 --disable-accessibility \
21 --mandir=/usr/share/man $CONFIGURE_ARGS
22 make
23 make DESTDIR=$PWD/_pkg install
24 }
26 # Rules to gen a SliTaz package suitable for Tazpkg.
27 genpkg_rules()
28 {
29 mkdir -p $fs/usr/lib/claws-mail/plugins
30 cp -a $_pkg/usr/lib/claws-mail/plugins/*.so* $fs/usr/lib/claws-mail/plugins/
31 }