(abort ("\nThe %s version %s requires at least AmigaOS 2.04 to run.\n" ProductName VersionNum)
"\n"
"Press the Proceed button to stop the installation procedure.\n")
)
; ****************************
; * set the default destination to ADPRO: (if exists) or SYS:<ProductBaseName> (if it doesn't).
; ****************************
;
(if (= (getassign "ADPRO" "a") "")
(set @default-dest ("SYS:%s" ProductBaseName))
(set @default-dest (getassign "ADPRO" "a"))
)
;(set @default-dest ("SYS:%s" ProductBaseName))
(setPkgOpts)
; ****************************
; * if (PkgOpts & 0), ask the user where to install the loader and saver modules,
; * but don't actually do it yet.
; ****************************
;
(if (IN PkgOpts 0) ; if bit position 0 is on
(
(set TotalFiles (+ TotalFiles 1)) ; adpro.library
(set continueOn 0)
(while (<> continueOn 1)
(
(set setDirPathWhy ("where the %s or %s program is located." ADProBaseName MPBaseName))
(set setDirPathHelp ("This part of the installation is asking you where the %s or %s program is currently located. The %s modules will be installed in the Loaders2 and Savers2 subdirectories of this selected directory.\n" ADProBaseName MPBaseName ProductBaseName))
(set DirPath @default-dest)
(setDirPath)
(if (= 1 (askbool
(prompt ("\nThe %s modules will be installed in the Loaders2 and Savers2 subdirectories of the following directory:\n\n%s\n\n\nIs this correct?" ProductBaseName DirPath))
(help ("This panel displays what you have told the Installer is the directory where the %s modules will be installed. " ProductBaseName)
"It is so that you know exactly where the files will be placed.\n"
"\n"
"To select a different directory, press the No button. Otherwise, press the "
"Yes button to proceed with the installation process.\n")))
(set continueOn 1)
)
)
)
(set ADProDir DirPath)
(set @default-dest ADProDir)
)
)
; ****************************
; * if (PkgOpts & 1), ask the user where to install the FRED ARexx scripts,
(set setDirPathWhy "where you want to install the FREDSavers scripts.")
(set setDirPathHelp "You must select a directory into which the FREDSavers ARexx scripts will be installed.\n")
(set DirPath defaultFREDScriptDir)
(setDirPath)
(set FREDScriptDir DirPath)
(set TotalFiles (+ TotalFiles 1)) ; 1 operation
)
)
; ****************************
; * if (PkgOpts & 2), ask the user where to install the package's ReadMe file
; * from disk 1.
; ****************************
;
(if (IN PkgOpts 2) ; if bit position 2 is on
(
(set setDirPathWhy "where you want to install the ReadMe file.")
(set setDirPathHelp "Although the ReadMe file will be displayed at the end of the installation process, you should install it onto your hard disk for future reference. There is a lot of important information in the ReadMe which for one reason or another was left out of the manual.\n")
(set DirPath @default-dest)
(setDirPath)
(set ReadMeDir DirPath)
(set TotalFiles (+ TotalFiles 2)) ; ReadMe + icon
)
)
(complete 0)
(message "\nShall I proceed with the installation?"
(help "Once you press the Proceed button, the PCP modules will be installed. This is your last chance "
"to abort this procedure without partially installing the selected files.\n"
"\n"
"After you press Proceed, you can use the Esc key to abort the installation procedure.\n")