summaryrefslogblamecommitdiff
path: root/user/bearssl/APKBUILD
blob: 1f40633b7609e420d9920be34c08621f3da0738c (plain) (tree)









































                                                                                                                                                                 
# Maintainer: Laurent Bercot <ska-adelie@skarnet.org>
# Contributor: Laurent Bercot <ska-adelie@skarnet.org>
pkgname=bearssl
pkgver=0.6
pkgrel=0
pkgdesc="The BearSSL implementation of the SSL/TLS protocol"
url="https://bearssl.org/"
arch="all"
license="MIT"
builddir="$srcdir/$pkgname-$pkgver"
subpackages="$pkgname-dev"
source="https://bearssl.org/$pkgname-$pkgver.tar.gz"

# not using the brssl dynamic patch atm, because the ABI can change,
# and bearssl's author recommends against using the .so atm.

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="f9ed25683cfc6c4abe7f1203a2b82ed101ee4c9e0f9ab60755b6a09c8d1e8e4f64d413624e7bb9c4b0033f909a2e4568a1d916cc6ce4736222900691e1f8359a  bearssl-0.6.tar.gz"