wok annotate claws-mail/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 | 33c5a14b5892 |
rev | line source |
---|---|
erjo@1239 | 1 # SliTaz package receipt. |
erjo@1239 | 2 |
erjo@1239 | 3 PACKAGE="claws-mail" |
erjo@1239 | 4 VERSION="3.5.0" |
erjo@1239 | 5 CATEGORY="networking" |
erjo@1239 | 6 SHORT_DESC="The user-firendly, lightweight and fast email client" |
erjo@1239 | 7 MAINTAINER="erjo@slitaz.org" |
erjo@1239 | 8 DEPENDS="" |
erjo@1239 | 9 BUIDL_DEPENDS="libetpan" |
erjo@1239 | 10 TARBALL="$PACKAGE-$VERSION.tar.bz2" |
erjo@1239 | 11 WEB_SITE="http://www.claws-mail.org/index.php" |
erjo@1239 | 12 WGET_URL="http://garr.dl.sourceforge.net/sourceforge/sylpheed-claws/$TARBALL" |
erjo@1239 | 13 |
erjo@1239 | 14 # Rules to configure and make the package. |
erjo@1239 | 15 compile_rules() |
erjo@1239 | 16 { |
erjo@1239 | 17 cd $src |
erjo@1239 | 18 ./configure --prefix=/usr \ |
erjo@1239 | 19 --infodir=/usr/share/info \ |
erjo@1239 | 20 --disable-ldap \ |
erjo@1239 | 21 --disable-jpilot \ |
erjo@1239 | 22 --disable-dillo-viewer-plugin \ |
erjo@1239 | 23 --mandir=/usr/share/man $CONFIGURE_ARGS |
erjo@1239 | 24 make |
erjo@1239 | 25 make DESTDIR=$PWD/_pkg install |
erjo@1239 | 26 } |
erjo@1239 | 27 |
erjo@1239 | 28 # Rules to gen a SliTaz package suitable for Tazpkg. |
erjo@1239 | 29 genpkg_rules() |
erjo@1239 | 30 { |
erjo@1239 | 31 mkdir -p $fs/usr/lib/$PACKAGE/plugins \ |
erjo@1239 | 32 $fs/usr/share/locale \ |
erjo@1239 | 33 $fs/usr/share/ |
erjo@1239 | 34 cp -a $_pkg/usr/bin $fs/usr |
erjo@1239 | 35 cp -a $_pkg/usr/share/applications $fs/usr/share |
erjo@1239 | 36 cp -a $_pkg/usr/share/icons $fs/usr/share |
erjo@1239 | 37 cp -a $_pkg/usr/share/locale/fr $fs/usr/share/locale |
erjo@1239 | 38 strip -s $fs/usr/bin/* |
erjo@1239 | 39 } |
erjo@1239 | 40 |