mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2026-05-04 12:01:41 +02:00
testing/opendkim: add startup script and sample config
This commit is contained in:
parent
d2f092c078
commit
767f27977e
@ -1,23 +1,26 @@
|
||||
# Maintainer: Valery Kartel <valery.kartel@gmail.com>
|
||||
# Contributor: Valery Kartel <valery.kartel@gmail.com>
|
||||
# Contributor: Stefan Wagner <stw@bit-strickerei.de>
|
||||
# Maintainer: Valery Kartel <valery.kartel@gmail.com>
|
||||
pkgname=opendkim
|
||||
pkgver=2.10.3
|
||||
pkgrel=1
|
||||
pkgrel=2
|
||||
pkgdesc="DKIM signing and verifying filter for MTAs"
|
||||
url="http://www.opendkim.org"
|
||||
arch="all"
|
||||
license="custom"
|
||||
depends=""
|
||||
depends_dev=""
|
||||
makedepends="$depends_dev openssl-dev libmilter-dev"
|
||||
install=""
|
||||
pkgusers=opendkim
|
||||
pkggroups=opendkim
|
||||
subpackages="$pkgname-dev $pkgname-doc $pkgname-libs $pkgname-dbg"
|
||||
source="http://downloads.sourceforge.net/project/$pkgname/$pkgname-$pkgver.tar.gz"
|
||||
install="$pkgname.pre-install"
|
||||
source="http://downloads.sourceforge.net/project/$pkgname/$pkgname-$pkgver.tar.gz
|
||||
opendkim.conf
|
||||
opendkim.initd"
|
||||
|
||||
_builddir="$srcdir"/$pkgname-$pkgver
|
||||
builddir="$srcdir"/$pkgname-$pkgver
|
||||
|
||||
build() {
|
||||
cd "$_builddir"
|
||||
cd "$builddir"
|
||||
./configure \
|
||||
--build=$CBUILD \
|
||||
--host=$CHOST \
|
||||
@ -27,12 +30,25 @@ build() {
|
||||
}
|
||||
|
||||
package() {
|
||||
cd "$_builddir"
|
||||
cd "$builddir"
|
||||
make DESTDIR="$pkgdir" install
|
||||
|
||||
install -Dm644 "$pkgdir"/usr/share/doc/opendkim/opendkim.conf.sample \
|
||||
"$pkgdir"/etc/opendkim/opendkim.conf.sample
|
||||
install -Dm644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
|
||||
install -Dm644 LICENSE.Sendmail "$pkgdir"/usr/share/licenses/$pkgname/LICENSE.Sendmail
|
||||
install -Dm644 LICENSE.Sendmail \
|
||||
"$pkgdir"/usr/share/licenses/$pkgname/LICENSE.Sendmail
|
||||
|
||||
install -m755 -D "$srcdir"/"$pkgname".initd "$pkgdir"/etc/init.d/"$pkgname"
|
||||
install -m644 -D "$srcdir"/"$pkgname".conf "$pkgdir"/etc/conf.d/"$pkgname"
|
||||
}
|
||||
|
||||
md5sums="916e691cdd16cfabd1cd6efe745323f9 opendkim-2.10.3.tar.gz"
|
||||
sha256sums="43a0ba57bf942095fe159d0748d8933c6b1dd1117caf0273fa9a0003215e681b opendkim-2.10.3.tar.gz"
|
||||
sha512sums="97923e533d072c07ae4d16a46cbed95ee799aa50f19468d8bc6d1dc534025a8616c3b4b68b5842bc899b509349a2c9a67312d574a726b048c0ea46dd4fcc45d8 opendkim-2.10.3.tar.gz"
|
||||
md5sums="916e691cdd16cfabd1cd6efe745323f9 opendkim-2.10.3.tar.gz
|
||||
a4fadd2a9de27bfbc83173db4db9a7f5 opendkim.conf
|
||||
8b79b9a10076989033d45604419ea71b opendkim.initd"
|
||||
sha256sums="43a0ba57bf942095fe159d0748d8933c6b1dd1117caf0273fa9a0003215e681b opendkim-2.10.3.tar.gz
|
||||
b030ab34d324d75b353a1d3ee1483da497ad2be76dec0ddba6c25547d833dca0 opendkim.conf
|
||||
b67e8971ce3de5282c5aa4f9a0f7f365880b2d8efa58c09c77ebb38df794507e opendkim.initd"
|
||||
sha512sums="97923e533d072c07ae4d16a46cbed95ee799aa50f19468d8bc6d1dc534025a8616c3b4b68b5842bc899b509349a2c9a67312d574a726b048c0ea46dd4fcc45d8 opendkim-2.10.3.tar.gz
|
||||
8a9ae1d6879ee20493f1fdd69ca750ca6cca8cdecea37a4b87dd67cd843491ea9e1dc2f3a2636acd1d22e961f9f61763beb898e4c58b534e3a1c9c8b1d6a3b69 opendkim.conf
|
||||
6fea585a95b5da6908275654046ad4d1f3341687c5602dfbc9a8f784f1ce04f194b291a9addfa24b565c0916bd5cb70348fc224140f5616ac3dc1a67378b3e62 opendkim.initd"
|
||||
|
||||
1
testing/opendkim/opendkim.conf
Normal file
1
testing/opendkim/opendkim.conf
Normal file
@ -0,0 +1 @@
|
||||
EXTRA_OPTS="-x /etc/opendkim/opendkim.conf"
|
||||
15
testing/opendkim/opendkim.initd
Normal file
15
testing/opendkim/opendkim.initd
Normal file
@ -0,0 +1,15 @@
|
||||
#!/sbin/openrc-run
|
||||
|
||||
pidfile=/run/opendkim/opendkim.pid
|
||||
|
||||
command=/usr/sbin/opendkim
|
||||
command_args="${EXTRA_OPTS}"
|
||||
|
||||
depend() {
|
||||
need net
|
||||
before mta
|
||||
}
|
||||
|
||||
start_pre() {
|
||||
checkpath -d -o opendkim:opendkim -m755 /run/opendkim
|
||||
}
|
||||
7
testing/opendkim/opendkim.pre-install
Normal file
7
testing/opendkim/opendkim.pre-install
Normal file
@ -0,0 +1,7 @@
|
||||
#!/bin/sh
|
||||
|
||||
addgroup -S opendkim 2>/dev/null
|
||||
adduser -S -D -H -s /bin/false -G opendkim -g opendkim opendkim 2>/dev/null
|
||||
|
||||
exit 0
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user