home *** CD-ROM | disk | FTP | other *** search
- ; $VER: Install_Libs.script V6.5 (24.6.94)
- ; © 1993-94 by Andreas R. Kleinert.
- ; This is the Installer Script for superview.library V6+
-
- (copylib
- (prompt "Installing superview.library to LIBS: ...")
- (help @copylib-help)
- (source "libs/superview.library")
- (dest "LIBS:")
- (confirm)
- )
-
- (copylib
- (prompt "Installing superviewsupport.library to LIBS: ...")
- (help @copylib-help)
- (source "libs/superviewsupport.library")
- (dest "LIBS:")
- (confirm)
- )
-
- (makedir "LIBS:svobjects")
- (makedir "LIBS:svdrivers")
-
- (copyfiles
- (prompt "Installing svobjects to LIBS:svobjects ...")
- (help @copyfiles-help)
- (source "libs/svobjects")
- (dest "LIBS:svobjects")
- (pattern "#?")
- (files)
- (confirm)
- )
-
- (copyfiles
- (prompt "Installing svdrivers to LIBS:svdrivers ...")
- (help @copyfiles-help)
- (source "libs/svdrivers")
- (dest "LIBS:svdrivers")
- (pattern "#?")
- (files)
- (confirm)
- )
-
- (textfile
- (prompt "O.K. saving to ENVARC:Default.svdriver !")
- (help @textfile-help)
- (dest "ENVARC:SuperView-Library/Default.svdriver")
- (append
- (askstring
- (prompt "Which SVDriver should be used as the default one, e.g. ECS.svdriver, AGA.svdriver ?")
- (help @askstring-help)
- (default "ECS.svdriver")
- )
- )
- )
-