blob: dcc3f878a31798d689ec4365bd02347f88b7f6ae (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
|
# Contributor: Leonardo Arena <rnalrd@alpinelinux.org>
# Maintainer: Leonardo Arena <rnalrd@alpinelinux.org>
pkgname=milter-greylist
pkgver=4.6.2
pkgrel=5
pkgdesc="Stand-alone milter written in C that implements the greylist filtering method"
url="http://hcpnet.free.fr/milter-greylist"
arch="all"
license="BSD-3-Clause"
makedepends="$depends_dev bison flex geoip-dev libmilter-dev libspf2-dev"
install="$pkgname.pre-install"
subpackages="$pkgname-doc $pkgname-openrc"
pkgusers="smmsp"
pkggroups="smmsp"
options="!check" # no test suite
source="ftp://ftp.espci.fr/pub/milter-greylist/milter-greylist-$pkgver.tgz
milter-greylist-conf.patch
milter-greylist.initd
"
prepare() {
default_prepare
#autoreconf -vif
}
build() {
./configure \
--build=$CBUILD \
--host=$CHOST \
--prefix=/usr \
--sysconfdir=/etc \
--mandir=/usr/share/man \
--infodir=/usr/share/info \
--localstatedir=/var/lib \
--with-libspf2 \
--with-user=smmsp \
--with-conffile=/etc/$pkgname/greylist.conf \
--with-dumpfile=/var/lib/$pkgname/greylist.db \
--with-thread-safe-resolver \
--with-libGeoIP \
--enable-postfix \
--enable-spamassassin \
--enable-dnsrbl \
--disable-rpath
make -j1
}
package() {
make DESTDIR="$pkgdir" install
install -m755 -D "$srcdir"/$pkgname.initd "$pkgdir"/etc/init.d/$pkgname
install -m644 -D greylist2.conf "$pkgdir"/etc/$pkgname/greylist2.conf
mkdir -p "$pkgdir"/var/lib/$pkgname
chown -R smmsp:smmsp "$pkgdir"/var/lib/$pkgname
}
sha512sums="458b4e74cadca6cb50838b87a192392cc19bde61062d2b25b2ca0fc515a277b53d177d9605f34aff1671f7722462c31ce419a4e058ca6ea23b80a8debf33079c milter-greylist-4.6.2.tgz
4057061fae24a8d008c6a8aed82018a4bb9f6e9ce72a13d9369d54b192e9a6e99b0e72db8905aa182879c9522b87a92844d0be92773843773508a21e42dbd447 milter-greylist-conf.patch
63f9e24d894980388cb5e5ae34e3adb5f9b5fa167e77c290fe72587002366c225a2fa9607d322eaa485c98cbdd68e14bdaa4b91ad46083f5f3a409eb5e6103f9 milter-greylist.initd"
|