#!/bin/sh # First argument of this script is the package name # Reading system configuration informations, functions and package versions. source ../sysinfos source ../functions source ../packages-list # This is only a basic installation (no servers) of inetutils. # Applying patches (if any) apply_patches ${1} && cd ${LFS_TMP}/${1}-build && ../${1}/configure \ --prefix=/usr \ --libexecdir=/usr/sbin \ --sysconfdir=/etc \ --localstatedir=/var \ --disable-logger \ --disable-syslogd \ --disable-whois \ --disable-servers && make -j ${MAKEJOBS} && make install && mv -fv /usr/bin/ping /bin # Return last error exit $?