home *** CD-ROM | disk | FTP | other *** search
- echo
- echo ">>> Installing bison"
- echo " ----------------"
- echo " Bison is a compiler for building parsers. It takes a grammar"
- echo " file, and produces a parser capable of tokenising the grammar."
- tar $TARFLAGS $SRC/bison.tgz -C $TARGET
- echo
- echo ">>> Installing flex"
- echo " ---------------"
- echo " Flex is a lexical analyser generator, and is normally used as"
- echo " a front end on a bison-generated parser."
- tar $TARFLAGS $SRC/flex.tgz -C $TARGET
- echo
- echo ">>> Installing make"
- echo " ---------------"
- echo " This allows intelligent compilation of packages, and tries to"
- echo " only recompile the minimum after a file is changed."
- tar $TARFLAGS $SRC/make.tgz -C $TARGET
- echo
- echo ">>> Installing perl"
- echo " ---------------"
- echo " Perl is a very powerful scripting language with scalar"
- echo " variables, arrays, and associative arrays. Please see the"
- echo " man page for more information"
- tar $TARFLAGS $SRC/perl.tgz -C $TARGET
- echo
- echo ">>> Installing pmake"
- echo " ----------------"
- echo " This is another make utility, but for BSD based makefiles."
- echo " It is otherwise identical to the previous make."
- tar $TARFLAGS $SRC/pmake.tgz -C $TARGET
- echo
- echo ">>> Installing RCS"
- echo " --------------"
- echo " RCS is a 'revision control system' to keep track of source code"
- echo " modifications, and will allow you to extract old versions out of"
- echo " its archive."
- tar $TARFLAGS $SRC/rcs.tgz -C $TARGET
- echo
- echo ">>> Installing strace"
- echo " -----------------"
- echo " strace is a debugging aid that allows examination of the kernel"
- echo " to user interface by showing the arguments to and the return value"
- echo " of each call made to the kernel."
- tar $TARFLAGS $SRC/strace.tgz -C $TARGET
-