home *** CD-ROM | disk | FTP | other *** search
/ Aminet 18 / aminetcdnumber181997.iso / Aminet / misc / edu / DITOdev.lha / DITOdev / Install_Includes < prev    next >
Text File  |  1996-11-06  |  876b  |  42 lines

  1. ; Very simple installer script for DITO vocabularies
  2. ; --------------------------------------------------
  3.  
  4. (message
  5.    "\nDITO\n"
  6.    "© Dirk Holtwick, 1996\n\n"
  7.    "DITO is a very flexible learning system for "
  8.    "languages. Notice that it is SHAREWARE and that "
  9.    "you have to pay a fee if you want to use it often.\n\n"
  10.    "Please read the README file for further informations.\n\n"
  11.    "Enjoy it, Dirk"
  12. )
  13.  
  14. ;
  15. ; Copy all files
  16. ; --------------
  17.  
  18. (set destname
  19.    (askdir
  20.       (prompt "Where do you want to install the includefiles")
  21.       (help @askdir-help)
  22.       (default "Include:")
  23.    )
  24. )
  25.  
  26. (copyfiles
  27.    (prompt "Copying extension includes")
  28.    (help @copyfiles-help)
  29.    (source "Extensions/Include")
  30.    (dest destname)
  31.    (all)
  32. )
  33.  
  34. (copyfiles
  35.    (prompt "Copying library includes")
  36.    (help @copyfiles-help)
  37.    (source "Library/Include")
  38.    (dest destname)
  39.    (all)
  40. )
  41.  
  42.