wok-next rev 19547
Add: SylFilter light spam filter (0.8)
author | Christophe Lincoln <pankso@slitaz.org> |
---|---|
date | Tue Dec 06 23:38:50 2016 +0100 (2016-12-06) |
parents | 31c5cbbd9380 |
children | de5eaf45ff17 |
files | sylfilter/receipt |
line diff
1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 1.2 +++ b/sylfilter/receipt Tue Dec 06 23:38:50 2016 +0100 1.3 @@ -0,0 +1,33 @@ 1.4 +# SliTaz package receipt. 1.5 + 1.6 +PACKAGE="sylfilter" 1.7 +VERSION="0.8" 1.8 +CATEGORY="network" 1.9 +SHORT_DESC="SylFilter is a light message filter library and command-line tools." 1.10 +MAINTAINER="pankso@slitaz.org" 1.11 +LICENSE="BSD" 1.12 +TARBALL="$PACKAGE-$VERSION.tar.gz" 1.13 +WEB_SITE="http://sylpheed.sraoss.jp/sylfilter/" 1.14 +WGET_URL="http://sylpheed.sraoss.jp/sylfilter/src/$TARBALL" 1.15 +TAGS="mail email filter spam" 1.16 + 1.17 +DEPENDS="sqlite" 1.18 +BUILD_DEPENDS="sqlite-dev" 1.19 + 1.20 +# Rules to configure and make the package. 1.21 +compile_rules() 1.22 +{ 1.23 + cd $src 1.24 + ./configure \ 1.25 + --prefix=/usr \ 1.26 + $CONFIGURE_ARGS && 1.27 + make && make install 1.28 +} 1.29 + 1.30 +# Rules to gen a SliTaz package suitable for Tazpkg. 1.31 +genpkg_rules() 1.32 +{ 1.33 + mkdir -p $fs/usr/lib 1.34 + cp -a $install/usr/bin $fs/usr 1.35 + cp -a $install/usr/lib/*.so* $fs/usr/lib 1.36 +}