home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
ANews 2
/
AnewsCD2.iso
/
Indispensables
/
Compression
/
xad
/
Install
< prev
next >
Wrap
Text File
|
1999-10-04
|
2KB
|
114 lines
; little dirty install script for xadmaster system
; $VER: Install 1.0 (20.07.1999) by SDI
(copylib
(help @copylib-help)
(prompt "Copying xadmaster.library")
(source "Libs/xadmaster.library")
(dest "LIBS:")
(confirm expert)
)
(copyfiles
(help @copyfiles-help)
(prompt "Copying xadmaster.library clients")
(source "Libs/xad")
(dest "LIBS:xad")
(all)
(confirm expert)
)
(copyfiles
(help @copyfiles-help)
(prompt "Copying shell tools")
(source "C")
(dest "C:")
(all)
(confirm expert)
)
(set #dir
(askdir
(prompt "Where should the docs be installed?")
(help @askdir-help)
(default @default-dest)
)
)
(set #catalog
(askchoice
(prompt "Select the language")
(help @askoptions-help)
(choices "deutsch" "english" "français" )
(default 1)
)
)
(if (= #catalog 0) (
(copyfiles
(help @copyfiles-help)
(prompt "Copying xadmaster guide file")
(source "Languages/deutsch/xadmaster.guide")
(dest #dir)
(infos)
(all)
(confirm expert)
)
(copyfiles
(help @copyfiles-help)
(prompt "Copying shell tool docs")
(source "Languages/deutsch/Docs")
(dest #dir)
(infos)
(all)
(confirm expert)
)
))
(if (= #catalog 1) (
(copyfiles
(help @copyfiles-help)
(prompt "Copying xadmaster guide file")
(source "xadmaster.guide")
(dest #dir)
(infos)
(all)
(confirm expert)
)
(copyfiles
(help @copyfiles-help)
(prompt "Copying shell tool docs")
(source "Docs")
(dest #dir)
(infos)
(all)
(confirm expert)
)
))
(if (= #catalog 2) (
(copyfiles
(help @copyfiles-help)
(prompt "Copying xadmaster guide file")
(source "Languages/français/xadmaster.guide")
(dest #dir)
(infos)
(all)
(confirm expert)
)
(copyfiles
(help @copyfiles-help)
(prompt "Copying shell tool docs")
(source "Languages/français/Docs")
(dest #dir)
(infos)
(all)
(confirm expert)
)
))