home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
World of A1200
/
World_Of_A1200.iso
/
programs
/
disk
/
misc
/
pfs
/
tools
/
diskspare2.2
/
crunchdisk
/
english1
< prev
next >
Wrap
AmigaDOS Script File
|
1995-02-27
|
913b
|
43 lines
.key path/a
IF "<path>" EQ ""
ECHO "Installation aborted"
SKIP ende:
ENDIF
ECHO "installing CrunchDisk to <path>."
IF NOT EXISTS <path>
ECHO "Creating directory..."
MAKEDIR <path>
COPY CrunchDisk.ninfo <path>.info
ELSE
ECHO "<path> already exists."
ASK "Do you want to proceed? [y/N]"
IF NOT WARN
ECHO "Installation cancelled"
SKIP ende:
ENDIF
ENDIF
COPY CrunchDisk to <path> >NIL:
COPY CrunchDisk.info to <path> >NIL:
COPY DOC to <path> >NIL:
COPY DOC.info to <path> >NIL:
COPY DOK to <path>
COPY DOK.info to <path> >NIL:
COPY MuchMore to <path> >NIL:
ASK "May I copy the required libraries into your Libs: directory ? [y/N]"
IF NOT WARN
ECHO "Installation not completed"
SKIP ende:
ENDIF
COPY libs/(#?) to libs: >NIL:
IF NOT EXISTS libs:compressors
MAKEDIR libs:Compressors
COPY libs/compressors/(#?) to libs:Compressors >NIL:
ECHO "CrunchDisk successfully installed to <path>."
LAB ende: