30 lines
848 B
Bash
30 lines
848 B
Bash
# Template file for 'procmail'
|
|
pkgname=procmail
|
|
version=3.22
|
|
revision=3
|
|
patch_args="-Np1"
|
|
hostmakedepends="opensmtpd"
|
|
depends="virtual?smtp-server"
|
|
short_desc="Autonomous mail processor"
|
|
maintainer="Leah Neukirchen <leah@vuxu.org>"
|
|
license="GPL-2.0-or-later, Artistic"
|
|
homepage="http://www.procmail.org"
|
|
distfiles="ftp://ftp.informatik.rwth-aachen.de/pub/packages/procmail/${pkgname}-${version}.tar.gz"
|
|
checksum=087c75b34dd33d8b9df5afe9e42801c9395f4bf373a784d9bc97153b0062e117
|
|
nocross="./autoconf: line 1396: ./_autotst: No such file or directory"
|
|
|
|
post_extract() {
|
|
cd $wrksrc
|
|
sed -i s/getline/procmail_getline/g src/*
|
|
}
|
|
|
|
do_build() {
|
|
make ${makejobs} CC="$CC" CFLAGS0="${CFLAGS} ${LDFLAGS}" LOCKINGTEST=100
|
|
}
|
|
|
|
do_install() {
|
|
make BASENAME="${DESTDIR}/usr" MANDIR="${DESTDIR}/usr/share/man" install
|
|
for f in examples/*; do
|
|
vsconf $f
|
|
done
|
|
}
|