util-linux.build 420 B

12345678910111213141516171819202122
  1. cd $tmpdir
  2. # Grab sources for util-linux
  3. if [ ! -d $utillinuxsrcdir ]; then
  4. wget $utillinuxmirror/$utillinux
  5. tar -xf $utillinux
  6. fi
  7. cd $utillinuxsrcdir
  8. ./configure --prefix=$freondir \
  9. --without-python \
  10. --disable-makeinstall-chown \
  11. --without-systemdsystemunitdir \
  12. --without-ncurses
  13. make -j$corecount
  14. make install
  15. cd $tmpdir