home *** CD-ROM | disk | FTP | other *** search
- ; $VER: FrameMachine_Install 1.0 (3-11-92)
- ; Framestor Hard Drive Installation Script
-
- (if (exists "sys:no")
- (
- (message "Please boot form your own harddisk for Instalation")
- (abort)
- )
- )
-
- (message "Deleting obsolete framemachine files")
-
- (delete "libs:prisma.library")
- (delete "devs:xilinx")
- (delete "devs:xilinx.prisma")
-
- (message "Now all is ok for instalation")
-
- (complete 10)
-
- (copyfiles
- (prompt "Copying some helpfiles")
- (help @copyfiles-help)
- (source "FM1:c")
- (dest "c:")
- (pattern "more")
- (infos)
- (confirm)
- )
-
-
- ;nur fragen wir erst mal wo denn der FrameMachine hin soll
-
- (set FrameMachine_dest
- (askdir
- (prompt "Please give me the drawer to install the FrameMachine Software")
- (help @askdir-help)
- (default "sys:")
- )
- )
-
- (set @default-dest FrameMachine_dest)
-
-
- (complete 20)
-
- ;nun kopieren wir mal die files für FrameMachine
-
- (copyfiles
- (prompt "Copying all programms to " FrameMachine_dest)
- (help @copyfiles-help)
- (source "FM1:progs")
- (dest FrameMachine_dest)
- (pattern "#?")
- (infos)
- (confirm)
- )
-
-
- (complete 30)
-
- (copyfiles
- (prompt "Copying AMIGAGUIDE© to your \"C:\" drawer")
- (help @copyfiles-help)
- (source "FM1:c/amigaguide")
- (dest "c:")
- (confirm)
- )
-
- (copyfiles
- (prompt "Copying AMIGAGUIDE©HELP to your \"S:\" drawer")
- (help @copyfiles-help)
- (source "FM1:s/help.guide")
- (dest "s:")
- (confirm)
- )
-
- (complete 40)
-
- ; und nun die libs
-
- (copylib
- (prompt "Copying the req.library for FrameMachine.")
- (help @copylib-help)
- (source "FM1:LIBS/req.library")
- (dest "libs:")
- (confirm)
- )
-
- (complete 50)
-
- (copylib
- (prompt "Copying the iffparse.library for FrameMachine.")
- (help @copylib-help)
- (source "FM1:LIBS/Iffparse.library")
- (dest "libs:")
- (confirm)
- )
-
- (copylib
- (prompt "Copying the iff.library for FrameMachine.")
- (help @copylib-help)
- (source "FM1:LIBS/Iff.library")
- (dest "libs:")
- (confirm)
- )
-
- (complete 60)
-
- (copylib
- (prompt "Copying the framemachine.library for FrameMachine.")
- (help @copylib-help)
- (source "FM1:LIBS/framemachine.library")
- (dest "libs:")
- (confirm)
- )
-
- (complete 70)
-
- (copylib
- (prompt "Copying the amigaguide.library for the helpings.")
- (help @copylib-help)
- (source "FM1:LIBS/amigaguide.library")
- (dest "libs:")
- (confirm)
- )
-
- ; und nu die Xilinx
-
- (copyfiles
- (prompt "Copying the XILINX´s for FrameMachine.")
- (help @copylib-help)
- (source "FM1:devs")
- (dest "devs:")
- (Pattern "xil#?")
- (Optional)
- (confirm)
- )
-
- (complete 80)
-
- (copyfiles
- (prompt "Copying all Tools to " FrameMachine_dest)
- (help @copyfiles-help)
- (source "FM2:TOOLS")
- (dest FrameMachine_dest)
- (pattern "#?")
- (infos)
- (confirm)
- )
-
- (copyfiles
- (prompt "Copying PPLAY to your C: drawer")
- (help @copyfiles-help)
- (source "FM2:TOOLS")
- (dest "c:")
- (pattern "PPLAY")
- (confirm)
- )
-
- (copyfiles
- (prompt "Copying PSHOW to your C: drawer")
- (help @copyfiles-help)
- (source "FM2:TOOLS")
- (dest "c:")
- (pattern "PSHOW")
- (confirm)
- )
-
- (complete 90)
-
- (copyfiles
- (prompt "Copying demopics to " FrameMachine_dest)
- (help @copyfiles-help)
- (source "FM2:DEMOPICS")
- (dest FrameMachine_dest)
- (pattern "#?")
- (infos)
- (confirm)
- )
- (message "For last minute information read Read.me on disk FM1.")
- (message "OK, all done, For development informations, please look on disk 2 in the DEVELOPER Drawer.")
-
- (complete 100)
-
- (exit)
-
-
-
-
-
-
-
-