wok view claws-mail-notification/receipt @ rev 1434

Fix: Missing deps to build rpm4.
author Eric Joseph-Alexandre <erjo@slitaz.org>
date Wed Oct 01 00:24:40 2008 +0200 (2008-10-01)
parents c140d16986cd
children 6a6ba65f2ad7
line source
1 # SliTaz package receipt.
3 PACKAGE="claws-mail-notification"
4 VERSION="0.17"
5 CATEGORY="network"
6 SHORT_DESC="claws-mail plugin - mail notification."
7 MAINTAINER="erjo@slitaz.org"
8 DEPENDS="claws-mail"
9 SOURCE="notification_plugin"
10 TARBALL="${SOURCE}-${VERSION}.tar.gz"
11 WEB_SITE="http://www.claws-mail.org/plugins.php?section=downloads"
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 --infodir=/usr/share/info \
19 --mandir=/usr/share/man $CONFIGURE_ARGS
20 make
21 make DESTDIR=$PWD/_pkg install
22 }
24 # Rules to gen a SliTaz package suitable for Tazpkg.
25 genpkg_rules()
26 {
27 mkdir -p $fs/usr/lib/claws-mail/plugins
28 cp -a $_pkg/usr/lib/claws-mail/plugins/*.so* $fs/usr/lib/claws-mail/plugins/
29 }