opt/maildrop/Pkgfile

27 lines
755 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
2006-02-23 16:26:10 +01:00
name=maildrop
2015-06-29 15:34:08 +02:00
version=2.8.3
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 \
2009-05-11 12:05:27 +02:00
--mandir=/usr/man \
2006-02-23 16:26:10 +01:00
--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
2013-09-29 17:57:08 +02:00
rm -r $PKG/usr/{man/man3,share}
2006-02-23 16:26:10 +01:00
}