blob: a97c171e146c70bca0dee91e1d949ce6786f1c6f (
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
|
# Maintainer: Luis Martinez <luis dot martinez at disroot dot org>
# Contributor: Mykyta Poturai <mykyta.poturai@tutanota.com>
pkgname=libthemis
pkgver=0.15.2
pkgrel=1
pkgdesc="Open-source high-level cryptographic services library."
url="https://github.com/cossacklabs/themis"
arch=('x86_64')
license=('Apache-2.0')
depends=('openssl')
provides=('libthemis.so' 'libsoter.so')
changelog=
source=("$pkgname-$pkgver.tar.gz::$url/archive/$pkgver.tar.gz"
"makefile-ldconfig.patch")
sha256sums=('ae1e7d7d20528c2ea627a863f9dc70a7e024069d80e563539bdefafecf5ec1fb'
'5378f6535e5c2bd44d72d0f7b461307135578a656dd8f64c54367bc0a1e12a1f')
prepare() {
cd "themis-$pkgver"
patch -p1 -i "$srcdir/makefile-ldconfig.patch"
}
build() {
cd "themis-$pkgver"
make
}
check() {
cd "themis-$pkgver"
make test
}
package() {
cd "themis-$pkgver"
make install PREFIX="$pkgdir/usr/"
}
|