home *** CD-ROM | disk | FTP | other *** search
- ;This script installs a onefile production by Focus Design to a (new)
- ;drawer in a selected partiton or drawer called "FOCUS_DESIGN_PRODUCTIONS"
- ;
- ;(c) Lars "Easy" Strange 1995 (Do NOT make any changes to this script).
- ;
-
- (set @default-dest "Work:")
- (set FD_production "AGAtales.exe")
- (set FD_prodinfo "AGAtales.exe.info")
- (set min_mem "250k")
-
- (set #install-msg
- (cat ("\n\n--- Focus Design installation script ---\n\nThis script installs \%s\ on your\nAmiga Harddrive.\n\n%s needs atleast %s free space on your harddrive. \n\n\nFocus Design 1995" FD_production FD_production min_mem)))
-
- (set #where-fd
- (cat ("Where shall I place %s\n(A new drawer will be created)"FD_production)))
-
- (message #install-msg)
-
- (set destdir
- (tackon
- (askdir
- (prompt #where-fd)
- (help @askdir-help)
- (default @default-dest)
-
- )
- "Focus_Design_Productions"
- )
- )
-
- (set #copying-fd_prod ("Copying %s... to %s" FD_production destdir))
- (set #copying-fd_info ("Copying %s... to %s" FD_prodinfo destdir))
-
- (makedir (destdir) (infos))
-
- (copyfiles
- (prompt "\n" #copying-fd_prod)
- (source FD_production)
- (dest destdir)
- )
-
- (copyfiles
- (prompt "\n" #copying-fd_info)
- (source FD_prodinfo)
- (dest destdir)
- )
-
- (message ("\n\n\n%s installation completed!\n\nYou can find %s in \n \%s\ \n\n\nEnjoy!\n\nFocus Design 1995" FD_production FD_production destdir))
-