home *** CD-ROM | disk | FTP | other *** search
/ Amiga Format 110 / af110sub.adf / Aread.lzx / aread / Install < prev    next >
Text File  |  1999-01-08  |  891b  |  36 lines

  1. ; $VER: Install_ARead 1.3 (6/3/1998)
  2. ;
  3. ; Install script for ARead
  4.  
  5. (set #hello-message         "\nWelcome to the ARead Installer Script.\n\n\nARead V1.3.\n\nBy Cliff Earl (6/3/1998).\n\n© 1998 Cliff Earl.\n\n\nFeedback to cee@voyager.co.nz")
  6.  
  7. (set ARead                  "ARead")
  8.  
  9. (set #targetexestr          "In which directory should ARead be installed?")
  10.  
  11. (set #copying-ARead         "Copying ARead executable...")
  12.  
  13. (set #targetexesel     (cat "\nThis part of the installation will copy the ARead program to the directory you choose.\n\n"
  14.                             @askdir-help))
  15.  
  16. (complete 0)
  17.  
  18. (message #hello-message)
  19.  
  20. (set @targetexe-dir
  21.       (askdir
  22.              (prompt #targetexestr)
  23.              (help #targetexesel @askdir-help)
  24.              (default "C:")
  25.       )
  26. )
  27.  
  28. (copyfiles
  29.       (prompt @copying-ARead)
  30.       (source ARead)
  31.       (dest @targetexe-dir)
  32. )
  33.  
  34. (complete 100)
  35.  
  36.