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

  1.  
  2. ;----------------------------
  3. ;try to figure out a place where the user usually installs his games
  4. (if (exists "Games:" (noreq) )
  5.     (set @default-dest "Games:")
  6.     (if (exists "SYS:Games" (noreq) )
  7.         (set @default-dest "SYS:Games")
  8.         (if (exists "Work:Games" (noreq) )
  9.             (set @default-dest "Work:Games")
  10.             (if (exists "JEUX:" (noreq) )
  11.                (set @default-dest "JEUX:")
  12.                (set @default-dest "SYS:")
  13.             )
  14.         )
  15.     )
  16. )
  17.  
  18.  
  19.  
  20. (set @default-dest
  21. (askdir
  22.     (prompt ("Where should %s installed ?\nA drawer \"%s\" will automatically created." @app-name @app-name))
  23.     (help @askdir-help)
  24.     (default @default-dest)
  25.     (disk)
  26. )
  27. )
  28.  
  29. (set #dest (tackon @default-dest @app-name))
  30.  
  31. (set #CI_unit
  32.     (askchoice
  33.         (prompt "From which disk unit do you want\nto install the game")
  34.         (help    @askoptions-help)
  35.         (choices
  36.            "DF0:"
  37.            "DF1:"
  38.            "DF2:"
  39.            "DF3:"
  40.         )
  41.     )
  42. )
  43.  
  44. (set #CI_drive ("DF%ld:" #CI_unit))
  45.  
  46.  
  47. (makedir #dest
  48.     (help @makedir-help)
  49.     (infos)
  50. )
  51.  
  52.  
  53. ;----------------------------
  54.  
  55. (copyfiles
  56.     (help @copyfiles-help)
  57.     (source "Supercars2HD")
  58.     (dest #dest)
  59.     (infos)
  60. )
  61.  
  62. (copyfiles
  63.     (help @copyfiles-help)
  64.     (source "sc2hd.readme")
  65.     (dest #dest)
  66.     (infos)
  67. )
  68.  
  69. (message ("\nInsert %s disk 1 into drive %s !" @app-name #CI_drive))
  70.     (if
  71.         (= 0 (run ("grem2file %ld \"%s\" 2 157 >con:///1000//CLOSE/WAIT" #CI_unit (tackon #dest "SC2.d1") )))
  72.         ("")
  73.         (abort "\"grem2file\" must be in your PATH !")
  74.     )
  75.  
  76. (message ("\nInsert %s disk 2 into drive %s !" @app-name #CI_drive))
  77.     (if
  78.         (= 0 (run ("grem2file %ld \"%s\" 2 151 >con:///1000//CLOSE/WAIT" #CI_unit (tackon #dest "SC2.d2") )))
  79.         ("")
  80.         (abort "\"grem2file\" must be in your PATH !")
  81.     )
  82.  
  83.  
  84. (exit)
  85.  
  86.