aboutsummaryrefslogtreecommitdiffstats
path: root/main/bearssl/APKBUILD
blob: b4867d3ad3b1672e99415c3df763817b5e093024 (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
# Maintainer: Laurent Bercot <ska-devel@skarnet.org>
# Contributor: Laurent Bercot <ska-devel@skarnet.org>
pkgname=bearssl
pkgver=0.5
pkgrel=0
pkgdesc="The BearSSL implementation of the SSL/TLS protocol"
url="https://bearssl.org/"
arch="all"
license="MIT"
subpackages="$pkgname-dev"
source="https://bearssl.org/$pkgname-$pkgver.tar.gz bearssl-brssl-dynamic.patch"
builddir="$srcdir/$pkgname-$pkgver"

build() {
	cd "$builddir"
	make \
	  CC=gcc \
	  LD=gcc \
	  LDDLL=gcc \
	  LDDLLFLAGS="-shared -Wl,-soname,libbearssl.so.${pkgver%%.*}" \
	  D=".so.$pkgver"
}

package() {
	mkdir -p -m 0755 -- "$pkgdir"/bin "$pkgdir"/lib "$pkgdir"/usr/include "$pkgdir"/usr/lib
	cp -f "$builddir/build/brssl" "$pkgdir/bin/"
	cp -f "$builddir"/inc/* "$pkgdir/usr/include/"
	cp -f "$builddir/build/libbearssl.a" "$pkgdir/usr/lib/"
	cp -f "$builddir/build/libbearssl.so.$pkgver" "$pkgdir/lib/"
	ln -sf "libbearssl.so.$pkgver" "$pkgdir/lib/libbearssl.so.${pkgver%%.*}"
	ln -sf "libbearssl.so.${pkgver%%.*}" "$pkgdir/lib/libbearssl.so"
}

check() {
	cd "$builddir/build"
	./testx509 && ./testcrypto all
}

sha512sums="1bd510f62f36620cda5317509e72bd0c6f3538c30aca2695e80c26d1ea7270d174ed3fbb6d690b3ced5d51ce3f6bfc776d78a196492900296a452bc4c8185e45  bearssl-0.5.tar.gz
f5fe047862eb355a662ccb1b95c2ca4a870ac0f8d3f4cada5396d2f6a6635647db53fbeb038f9a7651b84d6cda32b6415ce0f69a8da92636d3b3b76578114d5c  bearssl-brssl-dynamic.patch"