# Exit on error:
set -e

wget http://ftpmirror.gnu.org/coreutils/coreutils-8.19.tar.xz
tar xf coreutils-8.19.tar.xz
cd coreutils-8.19

./configure \
    --prefix=/usr \
    --enable-install-program=hostname \
    --enable-no-install-program=kill,uptime

make
make install

cd ..
exit 0
