summaryrefslogtreecommitdiff
path: root/spamprobe/Pkgfile
blob: 874bb64c1217992c04a34fa6eb954f31a7fe89e3 (plain)
    1 # Description: Spam detection program that uses Bayesian analysis
    2 # URL:         http://spamprobe.sourceforge.net/
    3 # Maintainer:  Juergen Daubert, jue at crux dot nu
    4 # Depends on:  db
    5 
    6 name=spamprobe
    7 version=1.4d
    8 release=8
    9 source=(http://downloads.sourceforge.net/project/$name/$name/$version/$name-$version.tar.gz
   10         64bit.patch compile-fixes.patch)
   11 
   12 build () {
   13     cd $SRC/$name-$version
   14 
   15     # https://src.fedoraproject.org/rpms/spamprobe/tree/master
   16     patch -p1 -i $SRC/64bit.patch
   17     patch -p1 -i $SRC/compile-fixes.patch
   18     
   19     ./configure --prefix=/usr \
   20                 --mandir=/usr/share/man \
   21                 --enable-default-8-bit \
   22                 --without-{gif,jpeg,png}
   23     
   24     make 
   25     make DESTDIR=$PKG install
   26 }

Generated by cgit