blob: a2362e07c381ed3c0aebd3f1ff14f17c159d745f (
plain)
1 # Description: Mail Delivery Agent with filtering abilities
2 # URL: http://www.courier-mta.org/maildrop/
3 # Maintainer: Juergen Daubert, jue at crux dot nu
4 # Depends on: gdbm libpcre courier-unicode libidn
5
6 name=maildrop
7 version=3.0.0
8 release=1
9 source=(http://download.sourceforge.net/project/courier/$name/$version/$name-$version.tar.bz2)
10
11 build () {
12 cd $name-$version
13
14 ./configure --prefix=/usr \
15 --with-db=gdbm \
16 --enable-maildrop-uid=root \
17 --enable-maildrop-gid=root \
18 --disable-tempdir \
19 --enable-syslog=1
20 make
21 make DESTDIR=$PKG install
22
23 chmod u+s $PKG/usr/bin/maildrop
24 rm -r $PKG/usr/share/{man/man3,doc}
25 }
|