home *** CD-ROM | disk | FTP | other *** search
Wrap
; installation script for Pixel 3D Professional V2.0 ; ; script version 1.0 ; ; 1.0 initial release ; (set my_help (cat "Performing this installation will create a new drawer named \"PixPro2\" in the specified path.\n\n" @askdir-help ) ) (message "You will now be asked to give a path in which to install Pixel 3D Professional Version 2.\n\n" "The installation utility will create a new drawer named \"PixPro2\"" "in the specified path.\n\n" "It will then copy all of its required files into this new drawer.\n\n" ) ; Get the path from the user (set dest_pp (askdir (prompt "Where should the Pixel 3D Professional Version 2 drawer be created/installed?") (help my_help) (default @default-dest) ) ) ; Tell the Installer program where the user wants the data (set @default-dest dest_pp) ; Make sure the PixPro2_Disk1 disk is present (askdisk (prompt "Please insert the disk labeled \"PixPro2_Disk1\" in any drive.") (help @askdisk-help) (dest "PixPro2_Disk1") (newname "PixPro2_Disk1") ) (set dest_pp (tackon dest_pp "PixPro2") ) (makedir dest_pp (infos) ) (working) (copyfiles (infos) (help @copyfiles-help) (source "PixPro2_Disk1:Install_Files/ReadMe") (dest dest_pp) ) (set dest_objects (tackon dest_pp "PixPro2_Objects") ) (makedir dest_objects (infos) ) (copyfiles (help @copyfiles-help) (source "PixPro2_Disk1:Install_Files/PixPro2_Objects") (pattern "#?") (files) (dest dest_objects) ) (set dest_psfiles (tackon dest_pp "PixPro2_PSFiles") ) (makedir dest_psfiles (infos) ) (copyfiles (help @copyfiles-help) (source "PixPro2_Disk1:Install_Files/PixPro2_PSFiles") (pattern "#?") (files) (dest dest_psfiles) ) (set dest_arexx (tackon dest_pp "PixPro2_AREXX") ) (makedir dest_arexx (infos) ) (copyfiles (help @copyfiles-help) (source "PixPro2_Disk1:Install_Files/PixPro2_AREXX") (pattern "#?") (files) (dest dest_arexx) ) (set dest_bitmaps (tackon dest_pp "PixPro2_Bitmaps") ) (makedir dest_bitmaps (infos) ) (copyfiles (help @copyfiles-help) (source "PixPro2_Disk1:Install_Files/PixPro2_Bitmaps") (pattern "#?") (files) (dest dest_bitmaps) ) (set dest_router (tackon dest_pp "PixPro2_Router") ) (makedir dest_router (infos) ) (copyfiles (help @copyfiles-help) (source "PixPro2_Disk1:Install_Files/PixPro2_Router") (pattern "#?") (files) (dest dest_router) ) ; Make sure the PixPro2_Disk2 disk is present (askdisk (prompt "Please insert the disk labeled \"PixPro2_Disk2\" in any drive.") (help @askdisk-help) (dest "PixPro2_Disk2") (newname "PixPro2_Disk2") ) (copyfiles (infos) (help @copyfiles-help) (source "PixPro2_Disk2:Install_Files/PixPro2") (dest dest_pp) ) (copyfiles (infos) (help @copyfiles-help) (source "PixPro2_Disk2:Install_Files/PixPro_PSPrlg") (dest dest_pp) ) (message "** IMPORTANT **\n\nBe sure to read the ReadMe file BEFORE running Pixel 3D Professional Version 2.\n\nBe sure that both the Registration disk and the Program disks are NOT WRITE PROTECTED.\n\n" )