36 lines
955 B
Bash
36 lines
955 B
Bash
# Template file for 'ndhc'
|
|
pkgname=ndhc
|
|
version=20150217
|
|
revision=1
|
|
build_style=cmake
|
|
make_dirs="/var/lib/ndhc/state 0755 root root
|
|
/var/lib/ndhc/jail/dev 0755 root root"
|
|
hostmakedepends="cmake git ragel"
|
|
makedepends="libcap-devel"
|
|
short_desc="Privilege-seperated secure DHCPv4 client"
|
|
maintainer="Christian Neukirchen <chneukirchen@gmail.com>"
|
|
license="BSD"
|
|
homepage="https://github.com/niklata/ndhc"
|
|
nocross=yes # needs heavy CMakeLists patching
|
|
|
|
# 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_fetch() {
|
|
git clone git://github.com/niklata/ndhc ${pkgname}-${version}
|
|
git clone git://github.com/niklata/ncmlib ${pkgname}-${version}/ncmlib
|
|
}
|
|
|
|
do_install() {
|
|
vbin build/src/ndhc
|
|
vman src/ndhc.8
|
|
vsv ndhc-eth0
|
|
vlicense LICENSE
|
|
}
|