home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Frozen Fish 1: Amiga
/
FrozenFish-Apr94.iso
/
bbs
/
alib
/
d8xx
/
d807
/
xtrash.lha
/
XTrash
/
Install_XTrash
< prev
next >
Wrap
Text File
|
1993-01-24
|
4KB
|
115 lines
; Installation Routine for XTrash
(message "\n\nWelcome to the AMIGA XTrash Installation. "
"This Installer installs XTrash on your AMIGA.\n\n"
"XTrash 1.01\n"
"© and programming 1992 by\n"
"Stefan Plöchinger\n"
"Kleiststraße 27\n"
"DW- 8012 Ottobrunn\n\n"
"All rights reserved."
)
(set x_language
(askchoice
(prompt "Select the language XTrash ought to communicate "
"with you:")
(help "XTrash is available in two different languages. "
"If you select `Deutsch', the German version will be "
"installed, if you select `English', the English one. "
"The documents are also installed in this language. "
)
(choices "Deutsch" "English")
(default 1)
)
)
(set x_source
(askdir
(prompt "Please indicate out of what directory XTrash "
"ought to be installed (Must be the XTrash "
"directory containing `Deutsch' and `English'):")
(help @askdir-help)
(default @default-dest)
)
)
(set x_locate
(askdir
(prompt "Please indicate in which directory XTrash "
"ought to be installed:")
(help @askdir-help)
(default @default-dest)
)
)
(set x_locate_diskspace (getdiskspace x_locate))
(if x_language
(
(set x_Space 101921)
)
(
(set x_Space 115539)
)
)
(if (< x_locate_diskspace x_Space)
(
(abort "You do not have enough space on your drive "
"to install XTrash.\n"
"XTrash requires "x_Space" bytes of free space "
"to install, you only have "x_locate_diskspace"."
)
)
)
(set @default-dest x_locate)
(if x_language
(
(set x_source (tackon x_source "English"))
(copyfiles
(source (tackon x_source "XTrash"))
(dest x_locate)
(infos)
)
(copyfiles
(source (tackon x_source "XTrash.doc"))
(dest x_locate)
(infos)
)
(set x_FinalLetter "c")
)
(
(set x_source (tackon x_source "Deutsch"))
(copyfiles
(source (tackon x_source "XTrash"))
(dest x_locate)
(infos)
)
(copyfiles
(source (tackon x_source "XTrash.dok"))
(dest x_locate)
(infos)
)
(set x_FinalLetter "k")
)
)
(message "All files have been installed now. \n"
"Finally, a few notes about the XTrash preferences: "
"XTrash has its own Preferences program, included in "
"XTrash itself. Remember that its settings aren't "
"stored now on your partition or in your directory. XTrash "
"will give you an error message concerning this when having "
"started XTrash."
"\nDon't worry about this `trouble'. You can solve it by "
"following some instructions in XTrash.do"x_FinalLetter". Simply "
"read the manual!"
"\nBesides, a double-click on XTrash.do"x_FinalLetter" perhaps "
"won't work. You might have to change the default tool (see in your "
"AMIGA DOS manual)."
)