mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2026-05-04 20:06:43 +02:00
testing/dma: add cronjob and install symlinks
This commit is contained in:
parent
39893983ce
commit
719a92e269
@ -2,7 +2,7 @@
|
||||
# Maintainer: Sören Tempel <soeren+alpine@soeren-tempel.net>
|
||||
pkgname=dma
|
||||
pkgver=0.11
|
||||
pkgrel=1
|
||||
pkgrel=2
|
||||
pkgdesc="A small Mail Transport Agent from DragonFly BSD"
|
||||
url="https://github.com/corecode/dma"
|
||||
arch="all"
|
||||
@ -14,6 +14,7 @@ install=""
|
||||
options="suid"
|
||||
subpackages="$pkgname-doc"
|
||||
source="$pkgname-$pkgver.tar.gz::https://github.com/corecode/$pkgname/archive/v$pkgver.tar.gz
|
||||
$pkgname.cron
|
||||
musl-fixes.patch"
|
||||
|
||||
_builddir="$srcdir"/$pkgname-$pkgver
|
||||
@ -26,10 +27,20 @@ package() {
|
||||
make DESTDIR="$pkgdir" PREFIX=/usr \
|
||||
install install-etc || return 1
|
||||
|
||||
local _prog=
|
||||
for _prog in bin/mailq bin/newailases sbin/sendmail; do
|
||||
mkdir -p "$pkgdir"/usr/${_prog%/*}
|
||||
ln -s /usr/sbin/dma "$pkgdir"/usr/$_prog || return 1
|
||||
done
|
||||
|
||||
# Create spool directory.
|
||||
install -d -o root -g mail \
|
||||
-m 775 "$pkgdir"/var/spool/$pkgname || return 1
|
||||
|
||||
# Install cronjob.
|
||||
install -Dm755 "$srcdir"/$pkgname.cron \
|
||||
"$pkgdir"/etc/periodic/15min/$pkgname || return 1
|
||||
|
||||
# Install additional documentation files.
|
||||
mkdir -p "$pkgdir"/usr/share/doc/$pkgname/examples
|
||||
install -m644 README.markdown TODO \
|
||||
@ -37,8 +48,11 @@ package() {
|
||||
}
|
||||
|
||||
md5sums="4090572921fc33be0977f4010881b501 dma-0.11.tar.gz
|
||||
f18d7ecc05b78f2c6090b09546ae6a93 dma.cron
|
||||
dae016c71deec1db57604149f2644537 musl-fixes.patch"
|
||||
sha256sums="288bd57f17aba696b6423b1fa0cd0f7d9b7228d32811f1cd7b821d5f020051b8 dma-0.11.tar.gz
|
||||
d8fa93762bef118aef5a37d546352c4b7be1617c88e07754b2edd06c4c70e7e9 dma.cron
|
||||
e7c39867da5e9c4cd91e0c82e071f770f3e615815c0bb47dd37eb9b2ec2242f0 musl-fixes.patch"
|
||||
sha512sums="8ccf85a921da12cbf5b9f2c93dd96da91d2acdace979ed4a6b37af94e72441bf654ac65525fc2c1118c1b16136278de4daeafc753dcaf4300a017e317f83fc4d dma-0.11.tar.gz
|
||||
5a79895fd42ffee347b979402225eb8025ea9bb41d0dc24b43d4b1e64106f1c612024456ea98e20aef4258eb8e852b370410e47d6ee34cea630dda29cc54840e dma.cron
|
||||
051af3d10711f7565fedd3a06c152454020e903e2e923a37cc77ccbf4346f308edecfe4f3d3c37a3cb2e54d1fb336bb4d9cea2a7d6dc560aec3c2369eb55e6a9 musl-fixes.patch"
|
||||
|
||||
5
testing/dma/dma.cron
Normal file
5
testing/dma/dma.cron
Normal file
@ -0,0 +1,5 @@
|
||||
#!/bin/sh
|
||||
# Flush the DMA queue automatically.
|
||||
|
||||
/usr/sbin/dma -q1
|
||||
exit 0
|
||||
Loading…
x
Reference in New Issue
Block a user