home *** CD-ROM | disk | FTP | other *** search
/ The Datafile PD-CD 4 / DATAFILE_PDCD4.iso / unix / armlinux / distrib / dev / disk1 / dinst,fff < prev    next >
Encoding:
Text File  |  1971-02-16  |  1.7 KB  |  46 lines

  1. echo
  2. echo ">>> Installing bison"
  3. echo "    ----------------"
  4. echo " Bison is a compiler for building parsers.  It takes a grammar"
  5. echo " file, and produces a parser capable of tokenising the grammar."
  6. tar $TARFLAGS $SRC/bison.tgz -C $TARGET
  7. echo
  8. echo ">>> Installing flex"
  9. echo "    ---------------"
  10. echo " Flex is a lexical analyser generator, and is normally used as"
  11. echo " a front end on a bison-generated parser."
  12. tar $TARFLAGS $SRC/flex.tgz -C $TARGET
  13. echo
  14. echo ">>> Installing make"
  15. echo "    ---------------"
  16. echo " This allows intelligent compilation of packages, and tries to"
  17. echo " only recompile the minimum after a file is changed."
  18. tar $TARFLAGS $SRC/make.tgz -C $TARGET
  19. echo
  20. echo ">>> Installing perl"
  21. echo "    ---------------"
  22. echo " Perl is a very powerful scripting language with scalar"
  23. echo " variables, arrays, and associative arrays.  Please see the"
  24. echo " man page for more information"
  25. tar $TARFLAGS $SRC/perl.tgz -C $TARGET
  26. echo
  27. echo ">>> Installing pmake"
  28. echo "    ----------------"
  29. echo " This is another make utility, but for BSD based makefiles."
  30. echo " It is otherwise identical to the previous make."
  31. tar $TARFLAGS $SRC/pmake.tgz -C $TARGET
  32. echo
  33. echo ">>> Installing RCS"
  34. echo "    --------------"
  35. echo " RCS is a 'revision control system' to keep track of source code"
  36. echo " modifications, and will allow you to extract old versions out of"
  37. echo " its archive."
  38. tar $TARFLAGS $SRC/rcs.tgz -C $TARGET
  39. echo
  40. echo ">>> Installing strace"
  41. echo "    -----------------"
  42. echo " strace is a debugging aid that allows examination of the kernel"
  43. echo " to user interface by showing the arguments to and the return value"
  44. echo " of each call made to the kernel."
  45. tar $TARFLAGS $SRC/strace.tgz -C $TARGET
  46.