home *** CD-ROM | disk | FTP | other *** search
/ Amiga ACS 1997 #3 / amigaacscoverdisc / utilities / shareware / misc / finditgui / install < prev   
Encoding:
Text File  |  1997-01-02  |  2.1 KB  |  108 lines

  1. ; FindItGui installation script
  2. ; $VER: 1.10 (23.09.96) by Michael Griggs
  3.  
  4.  
  5. (set #askoptions-help
  6.             "You may select one, all or none of the choices specified."
  7. )
  8.  
  9.  
  10. (set #installexe-help
  11.      "This is where the main executable part of FindItGui goes,\nalong with it's icon.  The default is sys:WBStartup, but\nyou can select it to be wherever you want."
  12. )
  13.  
  14.  
  15.  
  16. (set #installdoc-help
  17.       "This is the documentation for FindItGui.  It is suggested\nthat you install it in the directory HELP: but this is\nnot compulsory."
  18. )
  19.  
  20. (set exedest
  21.    (askdir
  22.       (prompt "Where do you wish to install FindItGui ?")
  23.       (help #installexe-help)
  24.       (default "SYS:WBStartup")
  25.    )
  26. )
  27.  
  28.  
  29. (set installdoc
  30.     (askoptions
  31.  
  32.         (prompt "Would you like to install the documentation?")
  33.         (help #askoptions-help)
  34.  
  35.         (choices
  36.  
  37.             "AmigaGuide"
  38.  
  39.         )
  40.     )
  41. )
  42.  
  43. (set docdest
  44.     (askdir
  45.         (prompt "Where do you wish to install the Documentation?")
  46.         (help @askdir-help)
  47.         (default "HELP:")
  48.     )
  49. )
  50.  
  51. (copylib
  52.    (prompt "Copying FindItGui...")
  53.    (source "FindItGui")
  54.    (confirm)
  55.    (infos)
  56.    (help @copylib-help)
  57.    (dest exedest)
  58. )
  59.  
  60. (copylib
  61.    (prompt "Copying filetypes...")
  62.    (source "filetypes")
  63.    (confirm)
  64.    (infos)
  65.    (help @copylib-help)
  66.    (dest "s:")
  67. )
  68.  
  69.  
  70. (copyfiles
  71.     (prompt "Copying Documentation...")
  72.     (source "FindItGui.Guide")
  73.     (infos)
  74.     (help @copyfiles-help)
  75.     (dest docdest)
  76. )
  77.  
  78. (message "BGUI.Library is about to be installed\n"
  79.          "Version 39 (included with FindItGui)\n"
  80.          "is the only stable version.  If you\n"
  81.          "have a later version in LIBS: then\n"
  82.          "please install *this* version.\n"
  83.          "This will avoid any BGUI related\n"
  84.          "bugs."
  85. )
  86.  
  87. (copyfiles
  88.     (prompt "Copying bgui.library to LIBS:")
  89.     (source "libs/bgui.library")
  90.     (dest "LIBS:")
  91.     (confirm)
  92.     (help @copyfiles-help)
  93. )
  94.       
  95. (copylib
  96.     (prompt "Copy whatis.library to LIBS:")
  97.     (source "libs/whatis.library")
  98.     (dest "LIBS:")
  99.     (confirm)
  100.     (help @copylib-help)
  101. )
  102.  
  103. (set @default-dest exedest)
  104. (message "FindItGui is now ready to go!")
  105. (message "Please read the documentation for more information")
  106.  
  107.  
  108.