home *** CD-ROM | disk | FTP | other *** search
/ Amiga ACS 1997 #4 / amigaacscoverdisc1997-041997.iso / games / installers / team17 / projectx / install-projectx < prev    next >
Text File  |  1997-06-09  |  2KB  |  99 lines

  1. (set #CI_unit 0)
  2. (set #CI_drive ("DF%ld:" #CI_unit))
  3.  
  4.  
  5.  
  6. ;----------------------------
  7.  
  8.  
  9. ;try to figure out a place where the user usually installs his games
  10. (if (exists "Games:" (noreq) )
  11.     (set @default-dest "Games:")
  12.     (if (exists "SYS:Games" (noreq) )
  13.         (set @default-dest "SYS:Games")
  14.         (if (exists "Work:Games" (noreq) )
  15.             (set @default-dest "Work:Games")
  16.             (if (exists "JEUX:" (noreq) )
  17.                (set @default-dest "JEUX:")
  18.                (set @default-dest "SYS:")
  19.             )
  20.         )
  21.     )
  22. )
  23.  
  24.  
  25.  
  26. (set @default-dest
  27. (askdir
  28.     (prompt ("Where should %s installed ?\nA drawer \"%s\" will automatically created." @app-name @app-name))
  29.     (help @askdir-help)
  30.     (default @default-dest)
  31.     (disk)
  32. )
  33. )
  34.  
  35. (set #dest (tackon @default-dest @app-name))
  36.  
  37.  
  38. (makedir #dest
  39.     (help @makedir-help)
  40.     (infos)
  41. )
  42.  
  43. ;----------------------------
  44.  
  45. (copyfiles
  46.     (help @copyfiles-help)
  47.     (source "ProjectXHD")
  48.     (dest #dest)
  49. )
  50. (copyfiles
  51.     (help @copyfiles-help)
  52.     (source "ProjectXHD.info")
  53.     (dest #dest)
  54. )
  55.  
  56. (copyfiles
  57.     (help @copyfiles-help)
  58.     (source "pxhd.readme.info")
  59.     (dest #dest)
  60. )
  61.  
  62. (copyfiles
  63.     (help @copyfiles-help)
  64.     (source "pxhd.readme")
  65.     (dest #dest)
  66. )
  67.  
  68. (message ("\nInsert %s disk 1 into drive %s !" @app-name #CI_drive))
  69.     (if
  70.         (= 0 (run ("disk2file %ld \"%s/ProjectX.disk1\" SKIPROB >con:///1000//CLOSE/WAIT" #CI_unit #dest )))
  71.         ("")
  72.         (abort "\"disk2file\" must be in your PATH !")
  73.     )
  74.  
  75. (message ("\nInsert %s disk 2 into drive %s !" @app-name #CI_drive))
  76.     (if
  77.         (= 0 (run ("disk2file %ld \"%s/ProjectX.disk2\" SKIPROB >con:///1000//CLOSE/WAIT" #CI_unit #dest )))
  78.         ("")
  79.         (abort "\"disk2file\" must be in your PATH !")
  80.     )
  81.  
  82. (message ("\nInsert %s disk 3 into drive %s !" @app-name #CI_drive))
  83.     (if
  84.         (= 0 (run ("disk2file %ld \"%s/ProjectX.disk3\" SKIPROB >con:///1000//CLOSE/WAIT" #CI_unit #dest )))
  85.         ("")
  86.         (abort "\"disk2file\" must be in your PATH !")
  87.     )
  88.  
  89. (message ("\nInsert %s disk 4 into drive %s !" @app-name #CI_drive))
  90.     (if
  91.         (= 0 (run ("disk2file %ld \"%s/ProjectX.disk4\" SKIPROB >con:///1000//CLOSE/WAIT" #CI_unit #dest )))
  92.         ("")
  93.         (abort "\"disk2file\" must be in your PATH !")
  94.     )
  95.  
  96.  
  97. (exit)
  98.  
  99.