opt/maildrop/Pkgfile

28 lines
836 B
Plaintext
Raw Normal View History

2006-02-23 16:26:10 +01:00
# Description: Mail Delivery Agent with filtering abilities
# URL: http://www.courier-mta.org/maildrop/
# Maintainer: J<>rgen Daubert, juergen dot daubert at t-online dot de
# Depends on: gdbm
name=maildrop
2007-01-03 18:05:08 +01:00
version=2.0.3
2006-02-23 16:26:10 +01:00
release=1
source=(http://dl.sourceforge.net/sourceforge/courier/$name-$version.tar.bz2 \
2007-01-03 18:05:08 +01:00
ftp://ftp.csx.cam.ac.uk/pub/software/programming/pcre/pcre-7.0.tar.bz2)
2006-02-23 16:26:10 +01:00
build () {
2007-01-03 18:05:08 +01:00
cd pcre-7.0
./configure --prefix=/ --enable-shared=no
make
make DESTDIR=$SRC install
cd $SRC/$name-$version
CPPFLAGS="-I$SRC/include" LDFLAGS="-L$SRC/lib" \
2006-02-23 16:26:10 +01:00
./configure --prefix=/usr \
--with-db=gdbm \
--disable-tempdir
make
make DESTDIR=$PKG install
2007-01-03 18:05:08 +01:00
chown root:root $PKG/usr/bin/{maildrop,lockmail}
2006-02-23 16:26:10 +01:00
rm -r $PKG/usr/{include,lib,man/man3,share}
}