56 lines
1.7 KiB
Bash
56 lines
1.7 KiB
Bash
# Template file for 's6-networking'
|
|
pkgname=s6-networking
|
|
version=2.5.1.3
|
|
revision=1
|
|
build_style=configure
|
|
configure_args="--libdir=/usr/lib $(vopt_if libtls --enable-ssl=libtls)
|
|
$(vopt_if bearssl --enable-ssl=bearssl)
|
|
--with-sysdeps=${XBPS_CROSS_BASE}/usr/lib/skalibs/sysdeps
|
|
--with-lib=${XBPS_CROSS_BASE}/usr/lib --bindir=/usr/bin
|
|
$(vopt_if static --enable-static-libc)"
|
|
makedepends="execline-devel $(vopt_if libtls libtls-devel) skalibs-devel
|
|
s6-devel s6-dns-devel $(vopt_if bearssl bearssl-devel)"
|
|
short_desc="Suite of small network utilities for Unix systems"
|
|
maintainer="Orphaned <orphan@voidlinux.org>"
|
|
license="ISC"
|
|
homepage="https://skarnet.org/software/s6-networking"
|
|
changelog="https://skarnet.org/software/s6-networking/upgrade.html"
|
|
distfiles="${homepage}/${pkgname}-${version}.tar.gz"
|
|
checksum=a09e43c959ff9e0caa8ff4002608e73c0f57f87f04a8d9c24e6c9afefe45e977
|
|
|
|
build_options="bearssl libtls static"
|
|
build_options_default="bearssl"
|
|
desc_option_bearssl="Use BearSSL as SSL library"
|
|
desc_option_libtls="Use LibreSSL as SSL library"
|
|
vopt_conflict bearssl libtls
|
|
|
|
case "$XBPS_TARGET_MACHINE" in
|
|
*-musl)
|
|
makedepends+=" nsss-devel"
|
|
configure_args+=" --enable-nsss --with-include=${XBPS_CROSS_BASE}/usr/include/nsss"
|
|
;;
|
|
esac
|
|
|
|
post_install() {
|
|
vlicense COPYING
|
|
vdoc README
|
|
vcopy "doc/*" usr/share/doc/${pkgname}
|
|
}
|
|
|
|
s6-networking-doc_package() {
|
|
short_desc+=" - documentation"
|
|
depends="${sourcepkg}>=${version}_${revision} s6-networking-man-pages"
|
|
pkg_install() {
|
|
vmove usr/share/doc
|
|
}
|
|
}
|
|
s6-networking-devel_package() {
|
|
short_desc+=" - development files"
|
|
depends="${sourcepkg}>=${version}_${revision} skalibs-devel
|
|
$(vopt_if libtls libtls-devel) $(vopt_if bearssl bearssl-devel)"
|
|
pkg_install() {
|
|
vmove usr/include
|
|
vmove "usr/lib/*.a"
|
|
}
|
|
}
|