wok-next view bogofilter/receipt @ rev 21153

Small updates.
author Aleksej Bobylev <al.bobylev@gmail.com>
date Thu Jan 31 16:45:41 2019 +0200 (2019-01-31)
parents 757d032c55c7
children 1b4816ca3fef
line source
1 # SliTaz package receipt v2.
3 PACKAGE="bogofilter"
4 VERSION="1.2.4"
5 CATEGORY="network"
6 SHORT_DESC="Mail filter that classifies mail as spam or ham"
7 MAINTAINER="devel@slitaz.org"
8 LICENSE="GPL2 GPL3"
9 WEB_SITE="http://bogofilter.sourceforge.net/"
11 TARBALL="$PACKAGE-$VERSION.tar.gz"
12 WGET_URL="$SF_MIRROR/$PACKAGE/$TARBALL"
14 BUILD_DEPENDS="sqlite3-dev"
16 compile_rules() {
17 ./configure \
18 --with-database=sqlite3 \
19 --sysconfdir=/etc/bogofilter \
20 $CONFIGURE_ARGS &&
21 make &&
22 make DESTDIR=$install install || return 1
24 chmod +x $install/usr/bin/bf_*
25 }
27 genpkg_rules() {
28 copy @std
29 DEPENDS="sqlite3 gsl"
30 TAGS="mail email filter spam C"
31 }