home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
AmigActive 20
/
AACD20.BIN
/
AACD
/
Utilities
/
Fix.backdrop
/
Install_en
< prev
next >
Wrap
Text File
|
2001-03-06
|
2KB
|
72 lines
; $VER: Install Fix Backdrop 1.8 (07.03.2001)
; Written By Bruce Steers <bsteers@ukonline.co.uk>
; Description: Installer for Fix.Backdrop/awnp-handler
(set srcdir (pathonly @icon))
(welcome "Welcome to Bruces\nFix.Backdrop 1.8 Installation Utility")
;------------------install/update the AWNPipe-handler-----------------
(set lv (getversion "l:awnpipe-handler"))
(set nv (getversion "awnp/l/awnpipe-handler"))
(if (> nv lv)
(copylib
(source "awnp/l/awnpipe-handler")
(dest "l:")
(prompt "Installing AWNPipe-handler")
(help "This Will Install AWNPipe-handler to L:")
(confirm)
)
(copylib
(dest "Devs:dosdrivers")
(source "awnp/DosDrivers/awnpipe")
(prompt "Installing AWebNews Pipe:")
(help "This Will Install the AWNPipe Descriptor File to Devs:DosDrivers")
(infos)
)
(run "C:assign AWNPipe: dismount")
(run "C:mount AWNPipe:")
)
(set defdst
(copyfiles
(source "Fix.backdrop")
(dest "sys:tools")
(prompt "Select a drawer to install the Fix.Backdrop arexx script to.\nDefault is sys:tools/")
(help @copyfiles-help)
(confirm)
(infos)
))
(copyfiles
(source "Fix.backdrop.readme")
(dest defdst)
(prompt "Select a drawer to install the Fix.Backdrop.Readme to.\nDefault is "defdst"")
(help @copyfiles-help)
(infos)
(confirm)
)
(complete 99)
(set runfile (tackon defdst "Fix.Backdrop"))
(if
(askbool
(prompt "Run "runfile"")
(help "This will run the command\nrx "runfile"")
(default 1)
)
(
(run "run >nil: sys:rexxc/rx "runfile"")
)
)
(set @default-dest (expandpath defdst))
(complete 100)
(exit "\n\n" @app-name
" is now installed.\n\n"
)