void-packages/srcpkgs/ndhc/template

36 lines
980 B
Bash

# Template file for 'ndhc'
pkgname=ndhc
version=20240524
revision=1
_dashversion="${version:0:4}-${version:4:2}-${version:6:2}"
build_style=gnu-makefile
make_dirs="
/var/lib/ndhc/state 0755 root root
/var/lib/ndhc/jail/dev 0755 root root"
makedepends="libcap-devel"
short_desc="Privilege-seperated secure DHCPv4 client"
maintainer="Duncaen <duncaen@voidlinux.org>"
license="MIT"
homepage="https://github.com/niklata/ndhc"
distfiles="https://github.com/niklata/ndhc/archive/refs/tags/v${_dashversion}.tar.gz"
checksum=4612e1b01e65e3c64b39e39d8e67e46e571ed651b33e3087d6c0d257cd25644c
export CFLAGS="-std=gnu99 -D_GNU_SOURCE -DNK_USE_CAPABILITY"
# XXX we use only one account for privsep, not three, because they
# should have the same primary group. to be verified.
system_accounts="ndhc"
ndhc_homedir="/var/lib/ndhc/jail"
build_options="static"
if [ "$build_option_static" ]; then
LDFLAGS+=" -static"
fi
do_install() {
vbin ndhc
vman ndhc.8
vsv ndhc
vlicense LICENSE
}