# Description: Mail Delivery Agent with filtering abilities
# URL:         http://www.courier-mta.org/maildrop/
# Maintainer:  Jürgen Daubert, juergen dot daubert at t-online dot de
# Depends on:  gdbm

name=maildrop
version=2.0.3
release=1
source=(http://dl.sourceforge.net/sourceforge/courier/$name-$version.tar.bz2 \
        ftp://ftp.csx.cam.ac.uk/pub/software/programming/pcre/pcre-7.0.tar.bz2)

build () {
    cd pcre-7.0
    ./configure --prefix=/ --enable-shared=no
    make
    make DESTDIR=$SRC install

    cd $SRC/$name-$version
    CPPFLAGS="-I$SRC/include" LDFLAGS="-L$SRC/lib" \
    ./configure --prefix=/usr \
                --with-db=gdbm \
                --disable-tempdir
    make 
    make DESTDIR=$PKG install
    chown root:root $PKG/usr/bin/{maildrop,lockmail}
    rm -r $PKG/usr/{include,lib,man/man3,share}
}
