bearssl: fix libbearssl.so.0 => not found

This commit is contained in:
Issam Maghni 2019-09-15 11:12:17 -04:00 committed by Leah Neukirchen
parent 56c96097cc
commit 20f73c93d5

View file

@ -1,23 +1,24 @@
# Template file for 'bearssl'
pkgname=bearssl
version=0.6
revision=1
revision=2
build_style=gnu-makefile
make_build_args="D=.so.${version} LD=\$(CC) LDDLL=\$(CC) LDDLLFLAGS=-shared LDDLLFLAGS+=-Wl,-soname,lib${pkgname}.so.${version%%.*}"
short_desc="Implementation of the SSL/TLS protocol in C"
maintainer="Leah Neukirchen <leah@vuxu.org>"
license="MIT"
homepage="https://www.bearssl.org/"
_changelog="https://www.bearssl.org/changelog.html"
distfiles="https://www.bearssl.org/${pkgname}-${version}.tar.gz"
homepage="https://bearssl.org"
changelog="${homepage}/changelog.html"
distfiles="${homepage}/${pkgname}-${version}.tar.gz"
checksum=6705bba1714961b41a728dfc5debbe348d2966c117649392f8c8139efc83ff14
CFLAGS="-fPIC"
make_build_args="D=.so.${version} LDDLL=\$(CC) LD=\$(CC) LDDLLFLAGS=-shared LDDLLFLAGS+=-Wl,-soname,libbearssl.so.0"
do_install() {
vbin build/brssl
vinstall build/libbearssl.a 0644 usr/lib
vinstall build/libbearssl.so.${version} 0644 usr/lib
ln -s libbearssl.so.${version} ${DESTDIR}/usr/lib/libbearssl.so
vinstall "build/lib${pkgname}.a" 0644 usr/lib
vinstall "build/lib${pkgname}.so.${version}" 0644 usr/lib
ln -s "lib${pkgname}.so.${version}" "${DESTDIR}/usr/lib/lib${pkgname}.so.${version%%.*}"
ln -s "lib${pkgname}.so.${version%%.*}" "${DESTDIR}/usr/lib/lib${pkgname}.so"
vcopy inc usr/include
vlicense LICENSE.txt LICENSE
}