blob: cf98aa1ba759f3951f68db1edbe0ac53ffd52acc (
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
|
# Maintainer: Tobias Frisch <thejackimonster@gmail.com>
_pkgname=pep-engine
pkgname=$_pkgname-hg
pkgver=2.1.9
pkgrel=1
pkgdesc="A Free Software library for automatic key management and encryption of messages."
arch=('x86_64' 'i686')
url='https://pep.software'
license=('GPL3')
makedepends=('mercurial' 'asn1c' 'make' 'yml2')
depends=('libetpan-fdik-git' 'gpgme' 'sqlite' 'sequoia')
provides=('pep-engine')
source=("hg+https://pep.foundation/dev/repos/pEpEngine")
md5sums=('SKIP')
prepare() {
cd "$srcdir/pEpEngine"
hg up
echo "PREFIX=$pkgdir/usr" > 'local.conf'
echo "PER_MACHINE_DIRECTORY=$pkgdir/usr/share/pEp" >> 'local.conf'
echo "YML2_PATH=/usr/bin" >> 'local.conf'
}
pkgver() {
cd "$srcdir/pEpEngine"
hg tags | grep Release | grep -v RC | sort -r | head -1 | awk '{print $1}' | cut -c9-
}
build() {
cd "$srcdir/pEpEngine"
make
make db
}
package() {
cd "$srcdir/pEpEngine"
make install
make dbinstall
}
|