home *** CD-ROM | disk | FTP | other *** search
/ A.C.E. 1 / ACE CD 1.iso / files / utils / framema1.dms / in.adf / install_FM < prev    next >
Encoding:
Text File  |  1993-05-12  |  3.2 KB  |  194 lines

  1. ; $VER: FrameMachine_Install 1.0 (3-11-92)
  2. ; Framestor Hard Drive Installation Script
  3.  
  4. (if (exists "sys:no")
  5.     (
  6.         (message "Please boot form your own harddisk for Instalation")
  7.         (abort)
  8.     )
  9. )
  10.  
  11. (message "Deleting obsolete framemachine files")
  12.  
  13. (delete "libs:prisma.library")
  14. (delete "devs:xilinx")
  15. (delete "devs:xilinx.prisma")
  16.  
  17. (message "Now all is ok for instalation")
  18.  
  19. (complete 10)
  20.  
  21. (copyfiles
  22.     (prompt "Copying some helpfiles")
  23.     (help @copyfiles-help)
  24.     (source "FM1:c")
  25.     (dest "c:")
  26.     (pattern "more")
  27.     (infos)
  28.     (confirm)
  29. )
  30.  
  31.  
  32. ;nur fragen wir erst mal wo denn der FrameMachine hin soll
  33.  
  34. (set FrameMachine_dest
  35.     (askdir
  36.             (prompt "Please give me the drawer to install the FrameMachine Software")
  37.             (help @askdir-help)
  38.             (default "sys:")
  39.     )
  40. )
  41.  
  42. (set @default-dest FrameMachine_dest)
  43.  
  44.  
  45. (complete 20)
  46.  
  47. ;nun kopieren wir mal die files für FrameMachine
  48.  
  49. (copyfiles
  50.     (prompt "Copying all programms to " FrameMachine_dest)
  51.     (help @copyfiles-help)
  52.     (source "FM1:progs")
  53.     (dest FrameMachine_dest)
  54.     (pattern "#?")
  55.     (infos)
  56.     (confirm)
  57. )
  58.  
  59.  
  60. (complete 30)
  61.  
  62. (copyfiles
  63.     (prompt "Copying AMIGAGUIDE© to your \"C:\" drawer")
  64.     (help @copyfiles-help)
  65.     (source "FM1:c/amigaguide")
  66.     (dest "c:")
  67.     (confirm)
  68. )
  69.  
  70. (copyfiles
  71.     (prompt "Copying AMIGAGUIDE©HELP to your \"S:\" drawer")
  72.     (help @copyfiles-help)
  73.     (source "FM1:s/help.guide")
  74.     (dest "s:")
  75.     (confirm)
  76. )
  77.  
  78. (complete 40)
  79.  
  80. ; und nun die libs
  81.  
  82. (copylib
  83.     (prompt "Copying the req.library for FrameMachine.")
  84.     (help @copylib-help)
  85.     (source "FM1:LIBS/req.library")
  86.     (dest "libs:")
  87.     (confirm)
  88. )
  89.  
  90. (complete 50)
  91.  
  92. (copylib
  93.     (prompt "Copying the iffparse.library for FrameMachine.")
  94.     (help @copylib-help)
  95.     (source "FM1:LIBS/Iffparse.library")
  96.     (dest "libs:")
  97.     (confirm)
  98. )
  99.  
  100. (copylib
  101.     (prompt "Copying the iff.library for FrameMachine.")
  102.     (help @copylib-help)
  103.     (source "FM1:LIBS/Iff.library")
  104.     (dest "libs:")
  105.     (confirm)
  106. )
  107.  
  108. (complete 60)
  109.  
  110. (copylib
  111.     (prompt "Copying the framemachine.library for FrameMachine.")
  112.     (help @copylib-help)
  113.     (source "FM1:LIBS/framemachine.library")
  114.     (dest "libs:")
  115.     (confirm)
  116. )
  117.  
  118. (complete 70)
  119.  
  120. (copylib
  121.     (prompt "Copying the amigaguide.library for the helpings.")
  122.     (help @copylib-help)
  123.     (source "FM1:LIBS/amigaguide.library")
  124.     (dest "libs:")
  125.     (confirm)
  126. )
  127.  
  128. ; und nu die Xilinx
  129.  
  130. (copyfiles
  131.     (prompt "Copying the XILINX´s for FrameMachine.")
  132.     (help @copylib-help)
  133.     (source "FM1:devs")
  134.     (dest "devs:")
  135.     (Pattern "xil#?")
  136.     (Optional)
  137.     (confirm)
  138. )
  139.  
  140. (complete 80)
  141.  
  142. (copyfiles
  143.     (prompt "Copying all Tools to " FrameMachine_dest)
  144.     (help @copyfiles-help)
  145.     (source "FM2:TOOLS")
  146.     (dest FrameMachine_dest)
  147.     (pattern "#?")
  148.     (infos)
  149.     (confirm)
  150. )
  151.  
  152. (copyfiles
  153.     (prompt "Copying PPLAY to your C: drawer")
  154.     (help @copyfiles-help)
  155.     (source "FM2:TOOLS")
  156.     (dest "c:")
  157.     (pattern "PPLAY")
  158.     (confirm)
  159. )
  160.  
  161. (copyfiles
  162.     (prompt "Copying PSHOW to your C: drawer")
  163.     (help @copyfiles-help)
  164.     (source "FM2:TOOLS")
  165.     (dest "c:")
  166.     (pattern "PSHOW")
  167.     (confirm)
  168. )
  169.  
  170. (complete 90)
  171.  
  172. (copyfiles
  173.     (prompt "Copying demopics to " FrameMachine_dest)
  174.     (help @copyfiles-help)
  175.     (source "FM2:DEMOPICS")
  176.     (dest FrameMachine_dest)
  177.     (pattern "#?")
  178.     (infos)
  179.     (confirm)
  180. )
  181. (message "For last minute information read Read.me on disk FM1.")
  182. (message "OK, all done, For development informations, please look on disk 2 in the DEVELOPER Drawer.")
  183.  
  184. (complete 100)
  185.  
  186. (exit)
  187.  
  188.  
  189.  
  190.  
  191.  
  192.  
  193.  
  194.