void-packages/srcpkgs/dhcpcd/template

34 lines
1.1 KiB
Bash
Raw Normal View History

# Template file for 'dhcpcd'
pkgname=dhcpcd
2015-05-18 09:38:00 +02:00
version=6.9.0
2015-06-02 08:10:28 +02:00
revision=2
lib32disabled=yes
build_pie=yes
2014-09-17 08:21:31 +02:00
build_options="systemd"
build_style=configure
2015-06-02 08:10:28 +02:00
configure_args="--prefix=/usr --sbindir=/usr/bin --sysconfdir=/etc --rundir=/run"
2014-10-18 09:02:15 +02:00
hostmakedepends="ntp pkg-config"
makedepends="libudev-devel"
conf_files="/etc/dhcpcd.conf"
short_desc="RFC2131 compliant DHCP client"
maintainer="Juan RP <xtraeme@voidlinux.eu>"
2014-10-29 10:26:08 +01:00
license="2-clause-BSD"
2012-07-09 12:26:14 +02:00
homepage="http://roy.marples.name/projects/dhcpcd"
distfiles="http://roy.marples.name/downloads/dhcpcd/dhcpcd-$version.tar.bz2"
2015-05-18 09:38:00 +02:00
checksum=1566a58ef785880c07762ff6c520e974cf42872be5fbb23b4520f4446b120a68
2014-08-20 11:48:03 +02:00
pre_install() {
# make wpa_supplicant log to syslog rather than stdout
sed -i 's,-B,& -s,' dhcpcd-hooks/10-wpa_supplicant
}
post_install() {
2014-08-20 11:48:03 +02:00
if [ "$build_option_systemd" ]; then
vinstall ${FILESDIR}/dhcpcd.service 644 usr/lib/systemd/system
vinstall ${FILESDIR}/dhcpcd@.service 644 usr/lib/systemd/system
fi
2014-10-13 11:52:12 +02:00
vsv dhcpcd
vsv dhcpcd-eth0
# Enable controlgroup by default, to make dhcpcd-ui work.
sed -i 's,^#\(controlgroup.*\),\1,' ${DESTDIR}/etc/dhcpcd.conf
}