home *** CD-ROM | disk | FTP | other *** search
/ Amiga Format CD 26 / amigaformatcd26.iso / -screenplay- / hd_installers / dennisagahd / install-dennisaga < prev    next >
Text File  |  1998-03-09  |  2KB  |  76 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.  
  25. (set @default-dest
  26. (askdir
  27.     (prompt ("Where should %s installed ?\nA drawer \"%s\" will automatically created." @app-name @app-name))
  28.     (help @askdir-help)
  29.     (default @default-dest)
  30.     (disk)
  31. )
  32. )
  33.  
  34. (set #dest (tackon @default-dest @app-name))
  35.  
  36.  
  37. (makedir #dest
  38.     (help @makedir-help)
  39.     (infos)
  40. )
  41.  
  42. ;----------------------------
  43. (makedir 
  44.   (tackon #dest "data")
  45.   (help @makedir-help)
  46. )
  47. (copyfiles
  48.     (help @copyfiles-help)
  49.     (source "DennisAGAHD")
  50.     (dest #dest)
  51.     (infos)
  52. )
  53. (copyfiles
  54.     (help @copyfiles-help)
  55.     (source "denisahd.readme")
  56.     (dest #dest)
  57.     (infos)
  58. )
  59. (message ("\nInsert %s Disk 1 into drive %s !" @app-name #CI_drive))
  60.     (if
  61.         (= 0 (run ("copy df%ld: to \"%s/data\" all " #CI_unit #dest )))
  62.         ("")
  63.         (abort "\"\" must be in your PATH !")
  64.     )
  65. (message ("\nInsert %s Disk 2 into drive %s !" @app-name #CI_drive))
  66.     (if
  67.         (= 0 (run ("copy df%ld: to \"%s/data\" all " #CI_unit #dest )))
  68.         ("")
  69.         (abort "\"\" must be in your PATH !")
  70.     )
  71.  
  72.  
  73.  
  74. (exit)
  75.  
  76.