home *** CD-ROM | disk | FTP | other *** search
/ Fresh Fish 7 / FreshFishVol7.bin / bbs / gfx / superview-lib-8.2.lha / SuperView-Lib / Install_Libs.script < prev    next >
Text File  |  1994-09-10  |  1KB  |  56 lines

  1. ; $VER: Install_Libs.script V6.5 (24.6.94)
  2. ; © 1993-94 by Andreas R. Kleinert.
  3. ; This is the Installer Script for superview.library V6+
  4.  
  5. (copylib
  6.   (prompt "Installing superview.library to LIBS: ...")
  7.   (help @copylib-help)
  8.   (source "libs/superview.library")
  9.   (dest "LIBS:")
  10.   (confirm)
  11. )
  12.  
  13. (copylib
  14.   (prompt "Installing superviewsupport.library to LIBS: ...")
  15.   (help @copylib-help)
  16.   (source "libs/superviewsupport.library")
  17.   (dest "LIBS:")
  18.   (confirm)
  19. )
  20.  
  21. (makedir "LIBS:svobjects")
  22. (makedir "LIBS:svdrivers")
  23.  
  24. (copyfiles
  25.   (prompt "Installing svobjects to LIBS:svobjects ...")
  26.   (help @copyfiles-help)
  27.   (source "libs/svobjects")
  28.   (dest "LIBS:svobjects")
  29.   (pattern "#?")
  30.   (files)
  31.   (confirm)
  32. )
  33.  
  34. (copyfiles
  35.   (prompt "Installing svdrivers to LIBS:svdrivers ...")
  36.   (help @copyfiles-help)
  37.   (source "libs/svdrivers")
  38.   (dest "LIBS:svdrivers")
  39.   (pattern "#?")
  40.   (files)
  41.   (confirm)
  42. )
  43.  
  44. (textfile
  45.   (prompt "O.K. saving to ENVARC:Default.svdriver !")
  46.   (help @textfile-help)
  47.   (dest "ENVARC:SuperView-Library/Default.svdriver")
  48.   (append
  49.     (askstring
  50.       (prompt "Which SVDriver should be used as the default one, e.g. ECS.svdriver, AGA.svdriver ?")
  51.       (help @askstring-help)
  52.       (default "ECS.svdriver")
  53.     )
  54.   )
  55. )
  56.