home *** CD-ROM | disk | FTP | other *** search
/ Amiga ISO Collection / AmigaUtilCD1.iso / GFX / Painting / LSD_P3D1.DMS / in.adf / InstallPP2 < prev   
Encoding:
Text File  |  1994-07-29  |  3.1 KB  |  168 lines

  1. ; installation script for Pixel 3D Professional V2.0
  2. ;
  3. ; script version 1.0
  4. ;
  5. ; 1.0 initial release
  6. ;
  7.  
  8. (set my_help
  9.    (cat
  10.       "Performing this installation will create a new drawer named \"PixPro2\" in the specified path.\n\n"
  11.       @askdir-help
  12.    )
  13. )
  14.  
  15. (message
  16.    "You will now be asked to give a path in which to install Pixel 3D Professional Version 2.\n\n"
  17.    "The installation utility will create a new drawer named \"PixPro2\""
  18.    "in the specified path.\n\n"
  19.    "It will then copy all of its required files into this new drawer.\n\n"
  20. )
  21.  
  22. ; Get the path from the user
  23.  
  24. (set dest_pp
  25.    (askdir
  26.       (prompt "Where should the Pixel 3D Professional Version 2 drawer be created/installed?")
  27.       (help my_help)
  28.       (default @default-dest)
  29.    )
  30. )
  31.  
  32. ; Tell the Installer program where the user wants the data
  33.  
  34. (set @default-dest dest_pp)
  35.  
  36. ; Make sure the PixPro2_Disk1 disk is present
  37.  
  38. (askdisk
  39.    (prompt "Please insert the disk labeled \"PixPro2_Disk1\" in any drive.")
  40.    (help @askdisk-help)
  41.    (dest "PixPro2_Disk1")
  42.    (newname "PixPro2_Disk1")
  43. )
  44.  
  45. (set dest_pp
  46.    (tackon dest_pp "PixPro2")
  47. )
  48.  
  49. (makedir dest_pp
  50.    (infos)
  51. )
  52.  
  53. (working)
  54.  
  55. (copyfiles
  56.    (infos)
  57.    (help @copyfiles-help)
  58.    (source "PixPro2_Disk1:Install_Files/ReadMe")
  59.    (dest dest_pp)
  60. )
  61.  
  62. (set dest_objects
  63.    (tackon dest_pp "PixPro2_Objects")
  64. )
  65.  
  66. (makedir dest_objects
  67.    (infos)
  68. )
  69.  
  70. (copyfiles
  71.    (help @copyfiles-help)
  72.    (source "PixPro2_Disk1:Install_Files/PixPro2_Objects")
  73.    (pattern "#?")
  74.    (files)
  75.    (dest dest_objects)
  76. )
  77.  
  78. (set dest_psfiles
  79.    (tackon dest_pp "PixPro2_PSFiles")
  80. )
  81.  
  82. (makedir dest_psfiles
  83.    (infos)
  84. )
  85.  
  86. (copyfiles
  87.    (help @copyfiles-help)
  88.    (source "PixPro2_Disk1:Install_Files/PixPro2_PSFiles")
  89.    (pattern "#?")
  90.    (files)
  91.    (dest dest_psfiles)
  92. )
  93.  
  94. (set dest_arexx
  95.    (tackon dest_pp "PixPro2_AREXX")
  96. )
  97.  
  98. (makedir dest_arexx
  99.    (infos)
  100. )
  101.  
  102. (copyfiles
  103.    (help @copyfiles-help)
  104.    (source "PixPro2_Disk1:Install_Files/PixPro2_AREXX")
  105.    (pattern "#?")
  106.    (files)
  107.    (dest dest_arexx)
  108. )
  109.  
  110. (set dest_bitmaps
  111.    (tackon dest_pp "PixPro2_Bitmaps")
  112. )
  113.  
  114. (makedir dest_bitmaps
  115.    (infos)
  116. )
  117.  
  118. (copyfiles
  119.    (help @copyfiles-help)
  120.    (source "PixPro2_Disk1:Install_Files/PixPro2_Bitmaps")
  121.    (pattern "#?")
  122.    (files)
  123.    (dest dest_bitmaps)
  124. )
  125.  
  126. (set dest_router
  127.    (tackon dest_pp "PixPro2_Router")
  128. )
  129.  
  130. (makedir dest_router
  131.    (infos)
  132. )
  133.  
  134. (copyfiles
  135.    (help @copyfiles-help)
  136.    (source "PixPro2_Disk1:Install_Files/PixPro2_Router")
  137.    (pattern "#?")
  138.    (files)
  139.    (dest dest_router)
  140. )
  141.  
  142. ; Make sure the PixPro2_Disk2 disk is present
  143.  
  144. (askdisk
  145.    (prompt "Please insert the disk labeled \"PixPro2_Disk2\" in any drive.")
  146.    (help @askdisk-help)
  147.    (dest "PixPro2_Disk2")
  148.    (newname "PixPro2_Disk2")
  149. )
  150.  
  151. (copyfiles
  152.    (infos)
  153.    (help @copyfiles-help)
  154.    (source "PixPro2_Disk2:Install_Files/PixPro2")
  155.    (dest dest_pp)
  156. )
  157.  
  158. (copyfiles
  159.    (infos)
  160.    (help @copyfiles-help)
  161.    (source "PixPro2_Disk2:Install_Files/PixPro_PSPrlg")
  162.    (dest dest_pp)
  163. )
  164.  
  165. (message
  166.    "** 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"
  167. )
  168.