termcap.build 299 B

123456789101112131415161718
  1. cd $tmpdir
  2. # Downloading termcap source
  3. if [ ! -f "$termcap" ]; then
  4. echo "Downloading termcap sources..."
  5. wget $termcapmirror/$termcap
  6. tar -xf $termcap
  7. fi
  8. # Configure TCC
  9. cd $termcapsrcdir
  10. ./configure --prefix=$freondir --with-shared --without-normal
  11. # Compile
  12. make -j20
  13. make install
  14. cd ..