home *** CD-ROM | disk | FTP | other *** search
/ Amiga Computing 105 / ac105b.adf / Execute.lzx / Execute / Install < prev    next >
Text File  |  1992-05-07  |  1KB  |  71 lines

  1.  
  2. ; Execute installation script
  3. ; $VER: 1.00 (08.06.96) by Michael Griggs
  4.  
  5.  
  6. (set #finalmessage (cat "\n"
  7.             "Execute is now ready to go!\n"
  8.             "Please read the documentation for more details\n"
  9.             )
  10. )
  11.  
  12. (set exedest
  13.    (askdir
  14.       (prompt "Where do you wish to install Execute ?")
  15.       (help @askdir-help)
  16.       (default "Sys:WbStartup")
  17.    )
  18. )
  19.  
  20. (copyfiles
  21.    (prompt "Copying Execute...")
  22.    (source "Execute")
  23.    (infos)
  24.    (dest exedest)
  25. )
  26.  
  27. (set installdoc
  28.         (askoptions
  29.  
  30.         (prompt "Which documentation would you like installed?")
  31.         (help @askoptions-help)
  32.  
  33.         (choices
  34.  
  35.             "AmigaGuide"
  36.  
  37.         )
  38.     )
  39. )
  40.  
  41.  
  42. (if (in installdoc 0)
  43.     (set docdest
  44.         (askdir
  45.             (prompt "Where do you wish to install the Execute documentation?")
  46.             (help @askdir-help)
  47.             (default "")
  48.         )
  49.     )
  50.     
  51.     (copyfiles
  52.         (prompt "Copying Documentation...")
  53.         (source "Execute.Guide")
  54.         (infos)
  55.         (dest docdest)
  56.     ))
  57.  
  58.  
  59. (copylib
  60.     (prompt "Copying bgui.library to LIBS:")
  61.     (source "libs/bgui.library")
  62.     (dest "LIBS:")
  63.     (confirm)
  64.     (help @copylib-help)
  65. )
  66.       
  67. (set @default-dest exedest)
  68. (message #finalmessage)
  69.  
  70.  
  71.