blob: 389df3b758c9e37f84ee6a135497e24deb729e34 (
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
59
60
61
62
63
64
65
66
67
|
# -*- mode: sh -*-
# Maintainer: Klaus Alexander Seistrup <$(echo 0x1fd+d59decfa=40 | tr 0-9+a-f=x ka-i@p-u.l)>
# Contributor: Marvin Gülker <quintus at quintilianus point eu>
# Contributor: Pierre Chapuis <catwell at archlinux dot us>
# Contributor: Uffe Jakobsen <uffe at uffe dot org>
pkgname='mlmmj'
pkgver=1.6.0
pkgrel=1
pkgdesc='Simple and slim mailing list manager (MLM) inspired by ezmlm'
depends=('bash' 'glibc' 'smtp-server')
optdepends=(
'perl: for running some of the contributed scripts'
'python: for running some of the contributed scripts'
)
arch=('aarch64' 'armv7h' 'i686' 'x86_64')
#url='http://mlmmj.org/'
url='https://codeberg.org/mlmmj/mlmmj'
license=('MIT') # SPDX-License-Identifier: MIT
# Development has moved to Codeberg
source=(
"$url/releases/download/RELEASE_$pkgver/mlmmj-$pkgver.tar.xz"
'sysuser.conf'
'tmpfile.conf'
)
#changelog="$pkgname.changelog"
install="$pkgname.install"
build() {
cd "$pkgname-$pkgver"
# Tests require “atf-c”. Anyone?
./configure --prefix=/usr --disable-tests
make
}
package() {
cd "$pkgname-$pkgver"
make DESTDIR="$pkgdir" install
install -vDm0644 -t "$pkgdir/usr/share/doc/$pkgname/" \
ChangeLog FAQ README.* TODO TUNABLES.md UPGRADE
cp -vfa contrib "$pkgdir/usr/share/doc/$pkgname/"
install -vDm0644 -t "$pkgdir/usr/share/licenses/$pkgname/" \
AUTHORS COPYING LICENSE
cd "$srcdir"
install -vDm0644 sysuser.conf "$pkgdir/usr/lib/sysusers.d/$pkgname.conf"
install -vDm0644 tmpfile.conf "$pkgdir/usr/lib/tmpfiles.d/$pkgname.conf"
}
sha256sums=(
'5442cb9d46b925593831743668f47a0b44c1c8a6bd6dc80ba582f435369a3b4a'
'SKIP' 'SKIP' # Skip to my lou
)
b2sums=(
'247018d16ef82c96ead6d381e5dfc7bac18daf4286f567a37715ab6beeff7f8587f740438228f25012952af18ccd30d6b03884849cce92116d380bac5f000f67'
'SKIP' 'SKIP' # Skip to my lou
)
# eof
|