home *** CD-ROM | disk | FTP | other *** search
/ Enigma Amiga Life 109 / EnigmaAmiga109CD.iso / software / giochi / wormwars / install < prev    next >
Encoding:
Text File  |  1999-12-29  |  1.7 KB  |  76 lines

  1. ; Installer script for Worm Wars 5.1
  2. ; © Copyright 1999 Amigan Software
  3. ; $VER: Worm Wars 5.2 (29.12.1999)
  4.  
  5. (set @app-name ("Worm Wars 5.2"))
  6. (welcome "Welcome to the Worm Wars 5.2 installation script!")
  7.  
  8. (set new_dir
  9.     (askdir
  10.         (prompt "Where do you want to install Worm Wars?\n"
  11.         "A drawer called \"WormWars\" will be created.\n")
  12.         (default "SYS:")
  13.         (help "This is self-explanatory.")
  14.     )
  15. )
  16. (set @default-dest (tackon new_dir "WormWars"))
  17. (makedir @default-dest (infos))
  18. (complete 10)
  19. (copylib
  20.     (prompt "Installing MEDPlayer.library to LIBS:")
  21.     (help "Worm Wars can use MEDPlayer.library to play music.")
  22.     (source "medplayer.library")
  23.     (dest "LIBS:")
  24.     (confirm)
  25. )
  26. (complete 30)
  27. (set #fontchoice
  28.     (askchoice
  29.         (prompt "Would you like to install WormWars.font?")
  30.         (help "Worm Wars can use this 8x8 monospaced font rather than Topaz 8.")
  31.         (choices "Yes" "No")
  32.         (default 0)
  33.     )
  34. )
  35. (if (= #fontchoice 0)
  36.     (    (copyfiles
  37.             (source "WormWars.font")
  38.             (dest "FONTS:")
  39.         )
  40.         (complete 35)
  41.         (makedir ("FONTS:WormWars"))
  42.         (complete 40)
  43.         (copyfiles
  44.             (source "WormWars/8")
  45.             (dest "FONTS:WormWars")
  46.         )
  47.     )
  48. )
  49. (complete 50)
  50. (copyfiles
  51.     (prompt "Copying other files...")
  52.     (source "")
  53.     (help @copyfiles-help)
  54.     (dest @default-dest)
  55.     (all)
  56.     (infos)
  57. )
  58. ;copy directory .info file?
  59. (complete 75)
  60. (delete (tackon @default-dest "MEDPlayer.library"))
  61. (complete 80)
  62. (delete (tackon @default-dest "WormWars.font"))
  63. (complete 85)
  64. (delete (tackon @default-dest "WormWars/8"))
  65. (complete 90)
  66. (delete (tackon @default-dest "WormWars"))
  67. (complete 95)
  68. (delete (tackon @default-dest "Install"))
  69.  
  70. ;delete source directory and all subdirectories of it?
  71. ;options as to whether to install the effects and/or source code?
  72. ;update and uninstall functions?
  73.  
  74. (complete 100)
  75. (exit bye)
  76.