33 lines
1012 B
Bash
33 lines
1012 B
Bash
# Template file for 'bearssl'
|
|
pkgname=bearssl
|
|
version=0.5
|
|
revision=1
|
|
build_style=gnu-makefile
|
|
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"
|
|
checksum=400f7027f309f5c0e3784ad1f5a612cfadfa108a33d867f50c75974cabd7830c
|
|
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
|
|
vcopy inc usr/include
|
|
vlicense LICENSE.txt LICENSE
|
|
}
|
|
bearssl-devel_package() {
|
|
short_desc+=" - development files"
|
|
depends="${sourcepkg}>=${version}_${revision}"
|
|
pkg_install() {
|
|
vmove usr/include
|
|
vmove usr/lib/*.a
|
|
vmove usr/lib/*.so
|
|
}
|
|
}
|