mirror of
https://github.com/Ponce/slackbuilds
synced 2024-11-24 10:02:29 +01:00
system/spambayes: Initial import
This commit is contained in:
parent
29d89a1909
commit
3e79f0bf03
4 changed files with 68 additions and 0 deletions
6
system/spambayes/README
Normal file
6
system/spambayes/README
Normal file
|
@ -0,0 +1,6 @@
|
|||
SpamBayes uses a different set of algorithm to most statistical spam filters,
|
||||
which enables to dramatically lower the number of legitimate mail classified as
|
||||
spam, through the introduction of an 'unsure' category.
|
||||
|
||||
SpamBayes can be used as a POP3 or an IMAP proxy, as well as a simple mail
|
||||
filter for use with procmail.
|
11
system/spambayes/slack-desc
Normal file
11
system/spambayes/slack-desc
Normal file
|
@ -0,0 +1,11 @@
|
|||
spambayes: spambayes (Python-based spam filter using statistical analysis)
|
||||
spambayes:
|
||||
spambayes: SpamBayes uses a different set of algorithm to most statistical spam
|
||||
spambayes: filters, which enables to dramatically lower the number of
|
||||
spambayes: legitimate mail classified as spam, through the introduction of an
|
||||
spambayes: 'unsure' category.
|
||||
spambayes:
|
||||
spambayes: SpamBayes can be used as a POP3 or an IMAP proxy, as well as a
|
||||
spambayes: simple mail filter for use with procmail.
|
||||
spambayes:
|
||||
spambayes: Homepage: http://spambayes.sourceforge.net/
|
43
system/spambayes/spambayes.SlackBuild
Normal file
43
system/spambayes/spambayes.SlackBuild
Normal file
|
@ -0,0 +1,43 @@
|
|||
#!/bin/sh
|
||||
|
||||
# Slackware build script for spambayes
|
||||
|
||||
# Copyright (c) 2007 Audrius Kažukauskas <neobug@tornado.ktu.lt>
|
||||
|
||||
set -e
|
||||
|
||||
PRGNAM=spambayes
|
||||
VERSION=1.0.4
|
||||
ARCH=noarch
|
||||
BUILD=${BUILD:-1}
|
||||
TAG=${TAG:-_SBo}
|
||||
CWD=`pwd`
|
||||
TMP=${TMP:-/tmp/SBo}
|
||||
PKG=$TMP/package-$PRGNAM
|
||||
OUTPUT=${OUTPUT:-/tmp}
|
||||
|
||||
rm -rf $PKG
|
||||
mkdir -p $TMP $PKG $OUTPUT
|
||||
cd $TMP
|
||||
rm -rf $PRGNAM-$VERSION
|
||||
tar xzvf $CWD/$PRGNAM-$VERSION.tar.gz
|
||||
cd $PRGNAM-$VERSION
|
||||
|
||||
chown -R root:root .
|
||||
chmod -R u+rw,go+r-w,a-s .
|
||||
|
||||
python setup.py install --root=$PKG
|
||||
|
||||
mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION
|
||||
cp -a \
|
||||
CHANGELOG.txt LICENSE.txt NEWTRICKS.txt PKG-INFO POP3PROXY.txt \
|
||||
README-DEVEL.txt README.txt TESTING.txt WHAT_IS_NEW.txt \
|
||||
$PKG/usr/doc/$PRGNAM-$VERSION
|
||||
cp -a contrib $PKG/usr/doc/$PRGNAM-$VERSION
|
||||
cat $CWD/$PRGNAM.SlackBuild > $PKG/usr/doc/$PRGNAM-$VERSION/$PRGNAM.SlackBuild
|
||||
|
||||
mkdir -p $PKG/install
|
||||
cat $CWD/slack-desc > $PKG/install/slack-desc
|
||||
|
||||
cd $PKG
|
||||
/sbin/makepkg -l y -c n $OUTPUT/$PRGNAM-$VERSION-$ARCH-$BUILD$TAG.tgz
|
8
system/spambayes/spambayes.info
Normal file
8
system/spambayes/spambayes.info
Normal file
|
@ -0,0 +1,8 @@
|
|||
PRGNAM="spambayes"
|
||||
VERSION="1.0.4"
|
||||
HOMEPAGE="http://spambayes.sourceforge.net/"
|
||||
DOWNLOAD="http://dl.sourceforge.net/spambayes/spambayes-1.0.4.tar.gz"
|
||||
MD5SUM="78c33e79888d410711ff3c7dd7e98d79"
|
||||
MAINTAINER="Audrius Kažukauskas"
|
||||
EMAIL="neobug@tornado.ktu.lt"
|
||||
APPROVED="Alan_Hicks"
|
Loading…
Reference in a new issue