home *** CD-ROM | disk | FTP | other *** search
/ Amiga Format CD 26 / amigaformatcd26.iso / -screenplay- / hd_installers / terminatoriinahd / install-t2na < prev    next >
Text File  |  1998-03-09  |  2KB  |  73 lines

  1. (set #CI_unit 0)
  2. (set #CI_drive ("DF%ld:" #CI_unit))
  3.  
  4.  
  5. ;----------------------------
  6.  
  7. ;try to figure out a place where the user usually installs his games
  8. (if (exists "Games:" (noreq) )
  9.     (set @default-dest "Games:")
  10.     (if (exists "SYS:Games" (noreq) )
  11.         (set @default-dest "SYS:Games")
  12.         (if (exists "Work:Games" (noreq) )
  13.             (set @default-dest "Work:Games")
  14.             (if (exists "JEUX:" (noreq) )
  15.                (set @default-dest "JEUX:")
  16.                (set @default-dest "SYS:")
  17.             )
  18.         )
  19.     )
  20. )
  21.  
  22. (message "\n\n\nThis loader needs the JST program (NOT INCLUDED)\n to be copied in your path\n\n(if you don't have it already)\n\nJST is available from aminet (game/patch)")
  23.  
  24. (set @default-dest
  25. (askdir
  26.     (prompt ("Where should %s installed ?\nA drawer \"%s\" will automatically created." @app-name @app-name))
  27.     (help @askdir-help)
  28.     (default @default-dest)
  29.     (disk)
  30. )
  31. )
  32.  
  33. (set #dest (tackon @default-dest @app-name))
  34.  
  35.  
  36. (makedir #dest
  37.     (help @makedir-help)
  38.     (infos)
  39. )
  40.  
  41. ;----------------------------
  42.  
  43. (copyfiles
  44.     (help @copyfiles-help)
  45.     (source "T2NAHD")
  46.     (dest #dest)
  47.     (infos)
  48. )
  49.  
  50. (copyfiles
  51.     (help @copyfiles-help)
  52.     (source "t2nahd.readme")
  53.     (dest #dest)
  54.     (infos)
  55. )
  56.  
  57. (message ("\nInsert %s disk 1 into drive %s !" @app-name #CI_drive))
  58.     (if
  59.         (= 0 (run ("disk2file %ld \"%s/t2na.d1\" SKIPROB >con:0/0/450/200//CLOSE/WAIT" #CI_unit #dest )))
  60.         ("")
  61.         (abort "\"disk2file\" must be in your PATH !")
  62.     )
  63.  
  64. (message ("\nInsert %s disk 2 into drive %s !" @app-name #CI_drive))
  65.     (if
  66.         (= 0 (run ("disk2file %ld \"%s/t2na.d2\" SKIPROB >con:0/0/450/200//CLOSE/WAIT" #CI_unit #dest )))
  67.         ("")
  68.         (abort "\"disk2file\" must be in your PATH !")
  69.     )
  70.  
  71. (exit)
  72.  
  73.