2006-02-23 15:26:10 +00:00
|
|
|
# Description: Mail Delivery Agent with filtering abilities
|
2021-02-16 14:03:44 +01:00
|
|
|
# URL: http://www.courier-mta.org/maildrop/
|
|
|
|
# Maintainer: Juergen Daubert, jue at crux dot nu
|
2022-12-03 12:27:45 +01:00
|
|
|
# Depends on: gdbm libpcre2 courier-unicode libidn2
|
2006-02-23 15:26:10 +00:00
|
|
|
|
|
|
|
name=maildrop
|
2023-08-15 09:45:48 +02:00
|
|
|
version=3.1.6
|
2024-01-06 11:48:44 +01:00
|
|
|
release=2
|
2010-09-28 12:37:23 +02:00
|
|
|
source=(http://download.sourceforge.net/project/courier/$name/$version/$name-$version.tar.bz2)
|
2006-02-23 15:26:10 +00:00
|
|
|
|
|
|
|
build () {
|
2021-02-16 14:03:44 +01:00
|
|
|
cd $name-$version
|
2006-12-03 11:27:55 +01:00
|
|
|
|
2021-02-16 14:03:44 +01:00
|
|
|
./configure \
|
|
|
|
--prefix=/usr \
|
|
|
|
--with-db=gdbm \
|
|
|
|
--enable-maildrop-uid=root \
|
|
|
|
--enable-maildrop-gid=root \
|
|
|
|
--disable-tempdir \
|
|
|
|
--enable-syslog=1
|
|
|
|
make
|
|
|
|
make DESTDIR=$PKG install
|
|
|
|
|
|
|
|
chmod u+s $PKG/usr/bin/maildrop
|
|
|
|
rm -r $PKG/usr/share/{man/man3,doc}
|
2006-02-23 15:26:10 +00:00
|
|
|
}
|