123456789101112131415161718 |
- cd $tmpdir
-
- # Downloading termcap source
- if [ ! -f "$termcap" ]; then
- echo "Downloading termcap sources..."
- wget $termcapmirror/$termcap
- tar -xf $termcap
- fi
- # Configure TCC
- cd $termcapsrcdir
- ./configure --prefix=$freondir --with-shared --without-normal
- # Compile
- make -j20
- make install
- cd ..
|