home *** CD-ROM | disk | FTP | other *** search
- ; $VER: UniFIX Install Script 1.0
- ; Written by EMPiRE/MYSTiC
- ; BBS : +31-72-157682 / +31-72-201182
-
- (set UF_Version "v1.2")
-
- (set @default-dest "SYS:")
-
- (set PkgOpts 63) ; All files
-
- (procedure setPkgOpts
- (
- (set PkgOpts
- (askoptions
- (prompt "Select the parts of the UniFIX package you want to install at this time.")
- (help
- "This part of the installation procedure lets you select the "
- "parts of the UniFIX package you want to install at this time.\n\n"
- @askoptions-help
- )
- (choices
- ; bit 0
- "UniFIX - Main File & Manual"
- ; bit 1
- "Send Tools - DX-Send/WildSend/SMDplay/MegaLoad"
- ; bit 2
- "Tools - Hex"
- ; bit 3
- "Ced Font - Ced Font"
- ; bit 4
- "UF.CFG - Default UniFIX Configuration"
- )
- )
- )
- )
- )
-
- (procedure setDirPath
- ;
- ; ****************************
- ; * Ask the user for a directory name.
- ; ****************************
- ;
- ; these variables must be defined before calling this procedure:
- ; setDirPathWhy
- ; setDirPathHelp
- ; DirPath
- ;
- ; this procedure returns the selected directory in DirPath
- ;
- (
- (set FALSE 0)
- (set TRUE 1)
- (set moveon FALSE)
- (while (NOT moveon)
- (
- (set DirPath
- (askdir (prompt ("Please select the directory %s" setDirPathWhy))
- (help setDirPathHelp "\n" @askdir-help)
- (default DirPath)
- )
- )
-
- (if (= (exists DirPath) 0)
- (makedir DirPath (confirm "EXPERT"))
- (set moveon TRUE)
- )
- )
- )
- )
- )
-
-
- (SetPkgOpts)
-
- (if (OR (IN PkgOpts 0) (IN PkgOpts 1) (IN PkgOpts 2) (IN PkgOpts 3) )
- (
- (set setDirPathWhy "where the UniFIX directory should be created.\n")
- (set setDirPathHelp "This part of the installation is asking you where you would like to place the UniFIX directory.\n")
- (set DirPath @default-dest)
- (setDirPath)
-
- (set @default-dest (tackon DirPath "UniFIX"))
- (makedir (tackon DirPath "UniFIX")
- (prompt "\nCreating Directory\n\n " @default-dest)
- (help)
- (confirm "EXPERT")
- )
-
- (if (IN PkgOpts 0)
- (
- (copyfiles
- (source "UniFIX")
- (dest @default-dest)
- (infos)
- )
- (copyfiles
- (source "UniFIX.DOC")
- (dest @default-dest)
- )
- )
- )
- (if (IN PkgOpts 1)
- (copyfiles
- (source "SendTools")
- (dest @default-dest)
- (all)
- )
- )
- (if (IN PkgOpts 2)
- (copyfiles
- (source "Tools")
- (dest "C:")
- (all)
- )
- )
- (if (IN PkgOpts 3)
- (copyfiles
- (source "FONTS")
- (dest "FONTS:")
- (all)
- )
- )
- (if (IN PkgOpts 4)
- (copyfiles
- (source "S")
- (dest "S:")
- (all)
- )
- )
- )
- )
-
- (exit (cat "Please read the Manual for more information on UniFIX.\n\n"
- "For BugReports, Suggestions or ALL Copiers call\n\n LAST OUTPOST\n\n+31-72-157682 / +31-72-201182\n\n"
- )
- )
-