home *** CD-ROM | disk | FTP | other *** search
/ BCI NET 2 / BCI NET 2.iso / archives / programming / libraries / svlib102u.lha / superview-lib_USR / Install_SVLib < prev    next >
Encoding:
Text File  |  1995-02-17  |  1.9 KB  |  90 lines

  1. ; $VER: Install_Libs.script V9.6 (23.10.94)
  2. ; © 1993-94 by Andreas R. Kleinert.
  3. ; This is the Installer Script for superview.library V9+
  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 "SYS:locale/catalogs")
  22.  
  23. (copyfiles
  24.   (prompt "Installing OS 2.1 catalog files ...")
  25.   (help @copyfiles-help)
  26.   (source "locale/catalogs")
  27.   (set svcomdir
  28.               (askdir
  29.                      (prompt "Catalog Path")
  30.                      (help @askdir-help)
  31.                      (newpath)
  32.                      (default "SYS:locale/Catalogs")
  33.               )
  34.   )
  35.   (dest svcomdir)
  36.   (all)
  37.   (confirm)
  38. )
  39.  
  40. (makedir "LIBS:svobjects")
  41. (makedir "LIBS:svdrivers")
  42. (makedir "LIBS:svoperators")
  43.  
  44. (copyfiles
  45.   (prompt "Installing svobjects to LIBS:svobjects ...")
  46.   (help @copyfiles-help)
  47.   (source "libs/svobjects")
  48.   (dest "LIBS:svobjects")
  49.   (pattern "#?")
  50.   (files)
  51.   (confirm)
  52. )
  53.  
  54. (copyfiles
  55.   (prompt "Installing svdrivers to LIBS:svdrivers ...")
  56.   (help @copyfiles-help)
  57.   (source "libs/svdrivers")
  58.   (dest "LIBS:svdrivers")
  59.   (pattern "#?")
  60.   (files)
  61.   (confirm)
  62. )
  63.  
  64. (copyfiles
  65.   (prompt "Installing svoperators to LIBS:svoperators ...")
  66.   (help @copyfiles-help)
  67.   (source "libs/svoperators")
  68.   (dest "LIBS:svoperators")
  69.   (pattern "#?")
  70.   (files)
  71.   (confirm)
  72. )
  73.  
  74. (makedir "ENV:SuperView-Library")
  75. (makedir "ENVARC:SuperView-Library")
  76.  
  77. (textfile
  78.   (prompt "O.K. saving to ENVARC:Default.svdriver !")
  79.   (help @textfile-help)
  80.   (dest "ENVARC:SuperView-Library/LIBRARY.controlpad")
  81.   (append "DEFAULTSVDRIVER=")
  82.   (append
  83.     (askstring
  84.       (prompt "Which SVDriver should be used as the default one, e.g. ECS.svdriver, AGA.svdriver ?")
  85.       (help @askstring-help)
  86.       (default "ECS.svdriver")
  87.     )
  88.   )
  89. )
  90.