blob: 868c043afdcea187ca119798141a5faba64e2b82 (
plain) (
tree)
|
|
# Contributor: Laurent Bercot <ska-adelie@skarnet.org>
# Maintainer: Laurent Bercot <ska-adelie@skarnet.org>
pkgname=bearssl
pkgver=0.6
pkgrel=1
pkgdesc="The BearSSL implementation of the SSL/TLS protocol"
url="https://bearssl.org/"
arch="all"
license="MIT"
depends=""
makedepends=""
subpackages="$pkgname-dev"
source="https://bearssl.org/$pkgname-$pkgver.tar.gz
bearssl-brssl-dynamic.patch
"
build() {
make \
CC=gcc \
LD=gcc \
LDDLL=gcc \
LDDLLFLAGS="-shared -Wl,-soname,libbearssl.so.${pkgver%%.*}" \
D=".so.$pkgver"
}
check() {
build/testx509
build/testcrypto all
}
package() {
mkdir -p -m 0755 -- "$pkgdir"/usr/bin "$pkgdir"/lib "$pkgdir"/usr/include "$pkgdir"/usr/lib
cp -f "$builddir/build/brssl" "$pkgdir/usr/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"
}
sha512sums="f9ed25683cfc6c4abe7f1203a2b82ed101ee4c9e0f9ab60755b6a09c8d1e8e4f64d413624e7bb9c4b0033f909a2e4568a1d916cc6ce4736222900691e1f8359a bearssl-0.6.tar.gz
f5fe047862eb355a662ccb1b95c2ca4a870ac0f8d3f4cada5396d2f6a6635647db53fbeb038f9a7651b84d6cda32b6415ce0f69a8da92636d3b3b76578114d5c bearssl-brssl-dynamic.patch"
|