2006-02-23 15:26:10 +00:00
|
|
|
# Description: Spam detection program that uses Bayesian analysis
|
|
|
|
# URL: http://spamprobe.sourceforge.net/
|
2011-02-02 13:44:37 +01:00
|
|
|
# Maintainer: Juergen Daubert, jue at crux dot nu
|
2010-10-11 13:21:11 +02:00
|
|
|
# Depends on: db
|
2006-02-23 15:26:10 +00:00
|
|
|
|
|
|
|
name=spamprobe
|
2007-01-08 07:36:05 +01:00
|
|
|
version=1.4d
|
2019-06-28 15:42:24 +02:00
|
|
|
release=8
|
2010-11-12 13:57:28 +01:00
|
|
|
source=(http://downloads.sourceforge.net/project/$name/$name/$version/$name-$version.tar.gz
|
2019-06-28 15:42:24 +02:00
|
|
|
64bit.patch compile-fixes.patch)
|
2006-02-23 15:26:10 +00:00
|
|
|
|
|
|
|
build () {
|
|
|
|
cd $SRC/$name-$version
|
2013-08-20 14:24:17 +02:00
|
|
|
|
2019-06-28 15:42:24 +02:00
|
|
|
# https://src.fedoraproject.org/rpms/spamprobe/tree/master
|
|
|
|
patch -p1 -i $SRC/64bit.patch
|
|
|
|
patch -p1 -i $SRC/compile-fixes.patch
|
2013-08-20 14:24:17 +02:00
|
|
|
|
2017-01-05 17:57:11 +01:00
|
|
|
./configure --prefix=/usr \
|
|
|
|
--mandir=/usr/share/man \
|
2019-06-28 15:42:24 +02:00
|
|
|
--enable-default-8-bit \
|
|
|
|
--without-{gif,jpeg,png}
|
2013-08-20 14:24:17 +02:00
|
|
|
|
2006-02-23 15:26:10 +00:00
|
|
|
make
|
|
|
|
make DESTDIR=$PKG install
|
|
|
|
}
|