blob: 7e0ba84cf49d9dd054a03f43bfe8ca11495434d0 (
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
|
# Contributor: Shiz <hi@shiz.me>
# Maintainer: Shiz <hi@shiz.me>
pkgname=gpg-remailer
pkgver=3.04.04
pkgrel=0
pkgdesc="Decrypt GPG messages and re-encrypt them to a well-defined group"
url="https://gitlab.com/fbb-git/gpg-remailer"
arch="all !s390x" # limited by mailutils
license="GPL-3.0-or-later"
depends="gnupg mailutils"
makedepends="icmake bash yodl bobcat-dev"
subpackages="$pkgname-doc"
source="https://gitlab.com/fbb-git/gpg-remailer/-/archive/$pkgver/gpg-remailer-$pkgver.tar.gz"
builddir="$srcdir/gpg-remailer-$pkgver/gpg-remailer"
build() {
./build program strip
./build man
}
check() {
./tmp/bin/binary --version
}
package() {
./build install bm "$pkgdir"
# remove HTML documentation.
rm -rf "$pkgdir"/usr/share/doc
}
sha512sums="e61781a44e917350e3f5016b346d0153ae41bdb5382f1b3b65a9d4e8111ccb6dfd95c9c8443abc7bb52d9a0aff4e1accbae8357b950e2989c6e8c5eff33c24c6 gpg-remailer-3.04.04.tar.gz"
|