home *** CD-ROM | disk | FTP | other *** search
/ The AGA Experience 2 / agavol2.iso / software / demos / a-c / corona / demoinstall < prev    next >
Text File  |  1995-12-26  |  1KB  |  73 lines

  1. ; Define some global variables
  2.  (set Disk1 "DISK1:")    ; Installation referenced by Disk1 and Disk2
  3.  (set Disk2 "DISK2:")
  4.  (set Disk3 "DISK3:")
  5.  
  6.  (set ask-install-nodir  "(Select directory.(doesn't create directory)\n" )
  7.  
  8.     (message "\nThis is a installation script for 'Corona' "
  9.         "and it will Install the 'Corona' demo to "
  10.         "wherever you want it to be installed. (HD!) "
  11.         "\n\n'Corona requires a minimum of 2mb CHIP and "
  12.         "fast. "
  13.     )
  14.  
  15. ; set the path where2install the Demo...
  16.  
  17.     (set    DestPath
  18.  
  19.         (askdir
  20.  
  21.             (prompt    "\nPlease select where you want the 'Corona'"
  22.                 "to be installed "
  23.                 ask-install-nodir
  24.             )
  25.             (help    "'Corona' consists of several files that are "
  26.                 "required to run the demo, these files must always "
  27.                 "be in the same drawer as the mainprogram.\n\n "
  28.             )
  29.  
  30.             (default "HD0:")
  31.         )
  32.     )
  33.  
  34.     (copyfiles
  35.  
  36.         (source (tackon Disk1 ""))
  37.         (dest    DestPath)
  38.  
  39.         (pattern "#?")
  40.         (files)
  41.         (optional "nofail" "askuser")
  42.     )
  43.  
  44.     (message "\nINSERT DISK 2 (DISK2:) "
  45.         )
  46.  
  47.     (copyfiles
  48.  
  49.         (source (tackon Disk2 ""))
  50.         (dest    DestPath)
  51.  
  52.         (pattern "#?")
  53.         (files)
  54.         (optional "nofail" "askuser")
  55.     )
  56.  
  57.     (message "\nINSERT DISK 3 (DISK3:) "
  58.         )
  59.  
  60.     (copyfiles
  61.  
  62.         (source (tackon Disk3 ""))
  63.         (dest    DestPath)
  64.  
  65.         (pattern "#?")
  66.         (files)
  67.         (optional "nofail" "askuser")
  68.     )
  69.  
  70.     (message "\n'Corona' should be run from shell/CLI and "
  71.         "from the directory it was installed to..."
  72.         )
  73.