lynx.build 218 B

123456789101112131415161718
  1. cd $tmpdir
  2. # Grab sources for Lynx
  3. if [ ! -d $lynxsrcdir ]; then
  4. wget $lynxmirror/$lynx
  5. tar -xf $lynx
  6. fi
  7. cd $lynxsrcdir
  8. ./configure --prefix=$freondir
  9. make -j$corecount
  10. make install
  11. cd $tmpdir