mkdir -p $INSTALL_ROOT/sbin $INSTALL_ROOT/bin $INSTALL_ROOT/etc/epoch/scripts &&
install $SOURCE_DIRECTORY/sbin/epoch $INSTALL_ROOT/sbin &&
for link in init halt poweroff reboot shutdown killall5; do
  ln -s -f $INSTALL_ROOT/sbin/epoch $INSTALL_ROOT/sbin/$link
done &&
ln -s -f $INSTALL_ROOT/sbin/epoch $INSTALL_ROOT/bin/wall &&

install_config_file $SPELL_DIRECTORY/epoch.conf \
                    $INSTALL_ROOT/etc/epoch/epoch.conf &&
for script in $SPELL_DIRECTORY/scripts/*.sh; do
  install -m 0755 $script $INSTALL_ROOT/etc/epoch/scripts
done
