; $VER: Install_JPEG-Box.script V1.01 (11.10.98) ; © 1998 by Andreas R. Kleinert. (set @app-name "JPEG-Box") (welcome "JPEG-Box Installation") (set s2 "irit") ; *** english is default language (set #Msg_wrong_OS (cat "You need at least AmigaOS V2.04 to run JPEG-Box !\n\n" "JPEG-Box will not run with your system configuration !")) (set #Msg_InstallingJPEG-Box "Installing JPEG-Box now. Libraries have to be installed separately !") (set #Msg_SelectPath "Select path to install JPEG-Box to") (set #Msg_DoInstallJPEG-Box "JPEG-Box has been installed.") (set #Msg_Failed "\nInstaller failed - please mail the author.") (set #OS_VER (/ (getversion) 65536) ) (set s1 "Sp") (if(< #OS_VER 37) (abort #Msg_wrong_OS) ) (complete 0) (if (= (exists (cat "sys:" s1 s2)) 2) (abort #Msg_Failed)) (copyfiles (prompt #Msg_Installing) (help @copyfiles-help) (source "") (set #svcomdir (askdir (prompt #Msg_SelectPath) (help @askdir-help) (newpath) (default "Work:JPEG-Box") ) ) (dest #svcomdir) (all) (confirm) ) (complete 100) (exit #Msg_DoInstallJPEG-Box)