opt/maildrop/Pkgfile

26 lines
730 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/
2011-02-02 13:44:37 +01:00
# Maintainer: Juergen Daubert, jue at crux dot nu
# Depends on: gdbm libpcre courier-unicode libidn
2006-02-23 16:26:10 +01:00
name=maildrop
version=3.0.0
2009-05-11 12:05:27 +02:00
release=1
source=(http://download.sourceforge.net/project/courier/$name/$version/$name-$version.tar.bz2)
2006-02-23 16:26:10 +01:00
build () {
2008-10-01 13:56:01 +02:00
cd $name-$version
2006-02-23 16:26:10 +01: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 16:26:10 +01: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 16:26:10 +01:00
}