contrib/dhcp/Pkgfile
2011-08-11 23:33:23 +02:00

29 lines
871 B
Plaintext

# Description: DHCP server, client and relay agent.
# URL: http://www.isc.org/dhcp
# Maintainer: Thomas Penteker, tek at serverop dot de
# Packager: Mark Rosenstand, mark at borkware dot net
name=dhcp
version=4.2.2
release=1
source=(http://ftp.isc.org/isc/$name/$name-$version.tar.gz dhcpd \
dhclient default-config.diff)
build() {
cd dhcp-$version
patch -p1 -i $SRC/default-config.diff
./configure --prefix=/usr \
--mandir=/usr/man \
--disable-dhcpv6 \
--sysconfdir=/etc
make
make DESTDIR=$PKG install
install -D ../dhcpd $PKG/etc/rc.d/dhcpd
install -D ../dhclient $PKG/etc/rc.d/dhclient
install -d -m 0755 $PKG/var/state/dhcp
install -d -m 0755 $PKG/var/db
touch $PKG/var/state/dhcp/dhcpd.leases
install -D -m 755 $SRC/dhcp-$version/client/scripts/linux $PKG/sbin/dhclient-script
}