wok view bogofilter/receipt @ rev 13944

xorg-xauth: add common path (thanks mojo)
author Pascal Bellard <pascal.bellard@slitaz.org>
date Tue Jan 29 09:43:35 2013 +0100 (2013-01-29)
parents 2ad3eb5127a2
children eb8067417980
line source
1 # SliTaz package receipt.
3 PACKAGE="bogofilter"
4 VERSION="1.2.2"
5 CATEGORY="network"
6 SHORT_DESC="Mail filter that classifies mail as spam or ham."
7 MAINTAINER="pankso@slitaz.org"
8 DEPENDS="sqlite gsl"
9 BUILD_DEPENDS="sqlite-dev"
10 TARBALL="$PACKAGE-$VERSION.tar.gz"
11 WEB_SITE="http://bogofilter.sourceforge.net/"
12 WGET_URL="$SF_MIRROR/$PACKAGE/$TARBALL"
13 TAGS="mail email filter spam C"
15 # Rules to configure and make the package.
16 compile_rules()
17 {
18 cd $src
19 ./configure --with-database=sqlite3 \
20 --prefix=/usr --sysconfdir=/etc/bogofilter \
21 --infodir=/usr/share/info \
22 --mandir=/usr/share/man $CONFIGURE_ARGS &&
23 make &&
24 make DESTDIR=$PWD/_pkg install
25 }
27 # Rules to gen a SliTaz package suitable for Tazpkg.
28 genpkg_rules()
29 {
30 mkdir -p $fs/usr
31 cp -a $_pkg/usr/bin $fs/usr
32 cp -a $_pkg/etc $fs
33 chmod +x $fs/usr/bin/bf_*
34 }