home *** CD-ROM | disk | FTP | other *** search
/ AmigActive 13 / AACD13.ISO / AACD / Utilities / Irritator / Install next >
Text File  |  1999-08-26  |  1KB  |  48 lines

  1. ;# Irritator Installation Script
  2. ;# By G. Griffiths (26-08-99)
  3.  
  4. (complete 0)
  5. (message "This utility will install Irritator\n"
  6.          "on your system. Press Proceed to continue."
  7. )
  8. (set #dest
  9.   (askdir
  10.     (prompt "Where should I put the Irritator executables? NO directory will be created!")
  11.     (help "Choose where the Irritator programs should be installed to."
  12.           "IrritatorPrefs HAS to be installed to C:"
  13.     )
  14.     (default "C:")
  15.   )
  16. )
  17. (working "Copying executables to "#dest"...")
  18. (copyfiles
  19.   (source "Irritator")
  20.   (dest #dest)
  21.   (infos)
  22. )
  23. (copyfiles
  24.   (source "IrritatorPrefs")
  25.   (dest "C:")
  26.   (infos)
  27. )
  28. (makedir "ENVARC:Irritator"
  29.   (help "This NEEDS to be created, else it won't work!")
  30.   (infos)
  31. (complete 50)
  32. (working "Copying requester texts to ENVARC:Irritator")
  33. (copyfiles
  34.   (prompt "Copy requester texts to ENVARC:Irritator ?")
  35.   (source "Irritator.txts")
  36.   (dest "ENVARC:Irritator")
  37. )
  38. (complete 75)
  39. (working "Copying commands to ENVARC:Irritator")
  40. (copyfiles
  41.   (prompt "Copy commands to ENVARC:Irritator ?")
  42.   (source "Irritator.cmds")
  43.   (dest "ENVARC:Irritator")
  44. )
  45. (complete 100)
  46. (exit)
  47.