# Exit one error:
set -e

wget http://roy.marples.name/downloads/dhcpcd/dhcpcd-6.1.0.tar.bz2
tar xf dhcpcd-6.1.0.tar.bz2
cd dhcpcd-6.1.0

./configure \
    --prefix=/usr \
    --bindir=/sbin \
    --sysconfdir=/etc \
    --dbdir=/var/lib/dhcpcd \
    --libexecdir=/usr/lib/dhcpcd

make
make install

cd ..
exit 0
