home *** CD-ROM | disk | FTP | other *** search
- ; Installation script for BootController
-
- (set @default-dest ("C:"))
-
- (transcript "Installing BootController 2.0")
-
- (set processor
- (askchoice
- (help @askchoice-help)
- (prompt "Which processor version to install ?")
- (choices "68000"
- "68020 +"
- )
- (default 1)
- )
- )
-
- (if (= processor 0)
- (copyfiles
- (source "68000/BootController")
- (dest "C:")
- )
- )
-
- (if (= processor 1)
- (copyfiles
- (source "68020/BootController")
- (dest "C:")
- )
- )
-
- (set docsdir
- (askdir
- (help @askdir-help)
- (prompt "Where would you like the guide file ?")
- (default "Guides:")
- )
- )
-
- (copyfiles
- (source "BootController.guide")
- (dest docsdir)
- )
-
- (makedir "Fonts:WB_Font")
-
- (copyfiles
- (source "Fonts/WB_Font/8")
- (dest "Fonts:WB_Font/")
- )
-
- (copyfiles
- (source "Fonts/WB_Font.font")
- (dest "Fonts:")
- )
-
- (transcript "Installation of BootController 2.0 complete")
-
- (exit 'Please read the guide file for the next step.')
-