wok-6.x rev 40
Add : sylpheed + bogofilter (anti spam)
author | Christophe Lincoln <pankso@slitaz.org> |
---|---|
date | Tue Dec 18 14:12:28 2007 +0100 (2007-12-18) |
parents | b5491484fd8d |
children | 6805779fbeec |
files | bogofilter/receipt sylpheed/receipt |
line diff
1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 1.2 +++ b/bogofilter/receipt Tue Dec 18 14:12:28 2007 +0100 1.3 @@ -0,0 +1,32 @@ 1.4 +# SliTaz package receipt. 1.5 + 1.6 +PACKAGE="bogofilter" 1.7 +VERSION="1.1.6" 1.8 +CATEGORY="extra" 1.9 +SHORT_DESC="Mail filter that classifies mail as spam or ham." 1.10 +MAINTAINER="pankso@slitaz.org" 1.11 +DEPENDS="sqlite" 1.12 +TARBALL="$PACKAGE-$VERSION.tar.gz" 1.13 +WEB_SITE="http://bogofilter.sourceforge.net/" 1.14 +WGET_URL="$SF_MIRROR/$PACKAGE/$TARBALL" 1.15 + 1.16 +# Rules to configure and make the package. 1.17 +compile_rules() 1.18 +{ 1.19 + cd $src 1.20 + ./configure --with-database=sqlite3 \ 1.21 + --prefix=/usr --sysconfdir=/etc/bogofilter \ 1.22 + --infodir=/usr/share/info \ 1.23 + --mandir=/usr/share/man $CONFIGURE_ARGS 1.24 + make 1.25 + make DESTDIR=$PWD/_pkg install 1.26 +} 1.27 + 1.28 +# Rules to gen a SliTaz package suitable for Tazpkg. 1.29 +genpkg_rules() 1.30 +{ 1.31 + mkdir -p $fs/usr 1.32 + cp -a $_pkg/usr/bin $fs/usr 1.33 + cp -a $_pkg/etc $fs 1.34 + strip -s $fs/usr/bin/* 2>/dev/null 1.35 +}
2.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 2.2 +++ b/sylpheed/receipt Tue Dec 18 14:12:28 2007 +0100 2.3 @@ -0,0 +1,32 @@ 2.4 +# SliTaz package receipt. 2.5 + 2.6 +PACKAGE="sylpheed" 2.7 +VERSION="2.4.7" 2.8 +CATEGORY="extra" 2.9 +SHORT_DESC="Simple, lightweight but featureful, and easy-to-use e-mail client" 2.10 +MAINTAINER="pankso@slitaz.org" 2.11 +DEPENDS="gtk+" 2.12 +TARBALL="$PACKAGE-$VERSION.tar.bz2" 2.13 +WEB_SITE="http://sylpheed.sraoss.jp/en/" 2.14 +WGET_URL="http://sylpheed.sraoss.jp/sylpheed/v2.4/$TARBALL" 2.15 + 2.16 +# Rules to configure and make the package. 2.17 +compile_rules() 2.18 +{ 2.19 + cd $src 2.20 + ./configure --prefix=/usr \ 2.21 + --infodir=/usr/share/info \ 2.22 + --mandir=/usr/share/man $CONFIGURE_ARGS 2.23 + make 2.24 + make DESTDIR=$PWD/_pkg install 2.25 +} 2.26 + 2.27 +# Rules to gen a SliTaz package suitable for Tazpkg. 2.28 +genpkg_rules() 2.29 +{ 2.30 + mkdir -p $fs/usr/share/pixmaps $fs/usr/share/locale 2.31 + cp -a $_pkg/usr/bin $fs/usr 2.32 + cp -a $src/sylpheed.png $fs/usr/share/pixmaps 2.33 + cp -a $_pkg/usr/share/locale/fr $fs/usr/share/locale 2.34 + strip -s $fs/usr/bin/* 2.35 +}