2006-02-23 15:26:10 +00:00
|
|
|
# Description: Mail Delivery Agent with filtering abilities
|
|
|
|
# URL: http://www.courier-mta.org/maildrop/
|
2011-02-02 13:44:37 +01:00
|
|
|
# Maintainer: Juergen Daubert, jue at crux dot nu
|
2018-09-21 16:21:32 +02:00
|
|
|
# Depends on: gdbm libpcre courier-unicode libidn
|
2006-02-23 15:26:10 +00:00
|
|
|
|
|
|
|
name=maildrop
|
2020-06-22 13:04:57 +02:00
|
|
|
version=3.0.1
|
2009-05-11 12:05:27 +02:00
|
|
|
release=1
|
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 () {
|
2008-10-01 13:56:01 +02:00
|
|
|
cd $name-$version
|
2006-12-03 11:27:55 +01:00
|
|
|
|
2006-02-23 15:26:10 +00:00
|
|
|
./configure --prefix=/usr \
|
|
|
|
--with-db=gdbm \
|
2010-06-01 11:46:27 +02:00
|
|
|
--enable-maildrop-uid=root \
|
|
|
|
--enable-maildrop-gid=root \
|
2010-02-06 16:34:01 +01:00
|
|
|
--disable-tempdir \
|
|
|
|
--enable-syslog=1
|
2008-10-01 13:56:01 +02:00
|
|
|
make
|
2006-02-23 15:26:10 +00:00
|
|
|
make DESTDIR=$PKG install
|
2010-06-01 11:46:27 +02:00
|
|
|
|
|
|
|
chmod u+s $PKG/usr/bin/maildrop
|
2016-08-17 15:19:10 +02:00
|
|
|
rm -r $PKG/usr/share/{man/man3,doc}
|
2006-02-23 15:26:10 +00:00
|
|
|
}
|