wok-next view bogofilter/receipt @ rev 21715

Up cookutils (1146)
author Pascal Bellard <pascal.bellard@slitaz.org>
date Tue Jul 28 07:53:22 2020 +0000 (2020-07-28)
parents d5aab818505e
children
line source
1 # SliTaz package receipt v2.
3 PACKAGE="bogofilter"
4 VERSION="1.2.5"
5 CATEGORY="network"
6 TAGS="mail email filter spam C"
7 SHORT_DESC="Mail filter that classifies mail as spam or ham"
8 MAINTAINER="maintainer@slitaz.org"
9 LICENSE="GPL2 GPL3"
10 WEB_SITE="https://bogofilter.sourceforge.io/"
12 TARBALL="$PACKAGE-$VERSION.tar.xz"
13 WGET_URL="$SF_MIRROR/$PACKAGE/$TARBALL"
15 BUILD_DEPENDS="sqlite3-dev"
17 compile_rules()
18 {
19 ./configure \
20 --with-database=sqlite3 \
21 --sysconfdir=/etc/bogofilter \
22 $CONFIGURE_ARGS &&
23 make &&
24 make DESTDIR=$install install || return 1
26 chmod +x $install/usr/bin/bf_*
27 }
29 genpkg_rules()
30 {
31 copy @std
33 DEPENDS="gsl sqlite3"
34 }