FreonLinux/pkgbuild/termcap.build

18 lines
299 B
Plaintext
Executable File

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 ..