wok rev 22559

updated bogofilter (1.2.4 -> 1.2.5)
author Hans-G?nter Theisgen
date Sat Jan 04 16:49:42 2020 +0100 (2020-01-04)
parents aa07498bd205
children 21797bd5599c
files bogofilter/receipt
line diff
     1.1 --- a/bogofilter/receipt	Sat Jan 04 16:40:20 2020 +0100
     1.2 +++ b/bogofilter/receipt	Sat Jan 04 16:49:42 2020 +0100
     1.3 @@ -1,27 +1,30 @@
     1.4  # SliTaz package receipt.
     1.5  
     1.6  PACKAGE="bogofilter"
     1.7 -VERSION="1.2.4"
     1.8 +VERSION="1.2.5"
     1.9  CATEGORY="network"
    1.10 +TAGS="mail email filter spam C"
    1.11  SHORT_DESC="Mail filter that classifies mail as spam or ham."
    1.12  MAINTAINER="pankso@slitaz.org"
    1.13  LICENSE="GPL2 GPL3"
    1.14 -TARBALL="$PACKAGE-$VERSION.tar.gz"
    1.15 -WEB_SITE="http://bogofilter.sourceforge.net/"
    1.16 +WEB_SITE="https://www.bogofilter.org/"
    1.17 +
    1.18 +TARBALL="$PACKAGE-$VERSION.tar.xz"
    1.19  WGET_URL="$SF_MIRROR/$PACKAGE/$TARBALL"
    1.20 -TAGS="mail email filter spam C"
    1.21  
    1.22 -DEPENDS="sqlite gsl"
    1.23 +DEPENDS="gsl sqlite"
    1.24  BUILD_DEPENDS="sqlite-dev"
    1.25  
    1.26  # Rules to configure and make the package.
    1.27  compile_rules()
    1.28  {
    1.29 -	cd $src
    1.30 -	./configure --with-database=sqlite3 \
    1.31 -		--prefix=/usr --sysconfdir=/etc/bogofilter \
    1.32 -		--infodir=/usr/share/info \
    1.33 -		--mandir=/usr/share/man $CONFIGURE_ARGS &&
    1.34 +	./configure				\
    1.35 +		--with-database=sqlite3		\
    1.36 +		--prefix=/usr			\
    1.37 +		--sysconfdir=/etc/bogofilter	\
    1.38 +		--infodir=/usr/share/info	\
    1.39 +		--mandir=/usr/share/man		\
    1.40 +		$CONFIGURE_ARGS &&
    1.41  	make &&
    1.42  	make DESTDIR=$DESTDIR install
    1.43  }
    1.44 @@ -30,7 +33,8 @@
    1.45  genpkg_rules()
    1.46  {
    1.47  	mkdir -p $fs/usr
    1.48 -	cp -a $install/usr/bin $fs/usr
    1.49 -	cp -a $install/etc $fs
    1.50 -	chmod +x $fs/usr/bin/bf_*
    1.51 +
    1.52 +	cp -a $install/usr/bin	$fs/usr
    1.53 +	cp -a $install/etc	$fs
    1.54 +	chmod +x		$fs/usr/bin/bf_*
    1.55  }