home *** CD-ROM | disk | FTP | other *** search
/ Amiga Format 101 / af101b.adf / installers.lzx / Installers / CoreDesign / Banshee / Install_Banshee < prev    next >
Text File  |  2016-01-17  |  2KB  |  99 lines

  1. ; $VER: Banshee HD Install-Script V1.0 (30.12.94) by Jean-Francois Fabre
  2. ; Adapted from an installer from Sentinel
  3.  
  4. ;try to figure out a place where the user usually installs his games
  5. (if (exists "Games:" (noreq) )
  6.     (set @default-dest "Games:")
  7.     (if (exists "SYS:Games" (noreq) )
  8.         (set @default-dest "SYS:Games")
  9.         (if (exists "Work:Games" (noreq) )
  10.             (set @default-dest "Work:Games")
  11.             (if (exists "JEUX:" (noreq) )
  12.                (set @default-dest "JEUX:")
  13.                (set @default-dest "SYS:")
  14.             )
  15.         )
  16.     )
  17. )
  18.  
  19. ;ask the user to select a directory to install the game into
  20. (set default-dest
  21.      (tackon (askdir (prompt "Where would you like " @app-name " installed?\n"
  22.                              "A drawer called Banshee will be created.")
  23.                      (help @askdir-help)
  24.                      (default @default-dest)
  25.                      (newpath)
  26.              )
  27.      )
  28. )
  29. (set @default-dest default-dest)
  30.  
  31. ;create the selected directory
  32. (makedir @default-dest
  33.          (infos)
  34. )
  35.  
  36. (message "\n\n\n\n\n\nPlease insert Banshee disk 1 in any drive"
  37. )
  38.  
  39. (copyfiles (source "bans1:")
  40.            (dest @default-dest)
  41.            (all)
  42. )
  43.  
  44.  
  45. (message "\n\n\n\n\n\n\Please insert Banshee disk 2 in any drive"
  46. )
  47.  
  48. (copyfiles (source "bans2:")
  49.            (dest @default-dest)
  50.            (all)
  51. )
  52.  
  53. (message "\n\n\n\n\n\n\Please insert Banshee disk 3 in any drive"
  54. )
  55.  
  56. (copyfiles (source "bans3:")
  57.            (dest @default-dest)
  58.            (all)
  59. )
  60.  
  61.  
  62. (message "\n\n\n\n\n\n\Please insert Banshee disk 4 in any drive"
  63. )
  64.  
  65. (copyfiles (source "bans4:")
  66.            (dest @default-dest)
  67.            (all)
  68. )
  69.  
  70. ;copy all extra files to this directory
  71.  
  72. (copyfiles (source "BansheeHD")
  73.            (dest @default-dest)
  74. )
  75.  
  76. (copyfiles (source "BansheeHD.icon")
  77.            (dest @default-dest)
  78.        (newname "BansheeHD.info")
  79. )
  80.  
  81. (copyfiles (source "bhd")
  82.            (dest @default-dest)
  83. )
  84.  
  85.  
  86. (copyfiles (source "bans.exe")
  87.            (dest @default-dest)
  88. )
  89.  
  90. (copyfiles (source "bansheehd.readme")
  91.            (dest @default-dest)
  92. )
  93.  
  94. (copyfiles (source "bansheehd.readme.info")
  95.            (dest @default-dest)
  96. )
  97.  
  98. (complete 100)
  99.