home *** CD-ROM | disk | FTP | other *** search
/ Amiga ACS 1998 #2 / amigaacscoverdisc1998-021998.iso / utilities / shareware / graphics / micropaint / install-micropaint < prev    next >
Encoding:
Text File  |  1997-02-16  |  1.1 KB  |  53 lines

  1. ; $VER: InstallMicroPaint 1.01
  2. ; FR-SoftWorks MicroPaint Installer Script
  3. ; Copyright © FR-SoftWorks 1997
  4.  
  5. (working "Installing MicroPaint")
  6.  
  7. (set DestDir
  8.    (askdir
  9.       (prompt "Where do you want to install MicroPaint?")
  10.       (help "A drawer for the application will be created automatically.")
  11.       (default "SYS:")
  12.    )
  13. )
  14.  
  15. (set DestDir (expandpath DestDir))
  16. (set @default-dest (tackon DestDir "MicroPaint"))
  17.  
  18. (makedir @default-dest (infos))
  19.  
  20. (copyfiles
  21.    (source "dist")
  22.    (dest @default-dest)
  23.    (all)
  24.    (infos)
  25. )
  26.  
  27. (copyfiles
  28.     (prompt "Copying CBSI")
  29.     (help "CBSI is an abbreviation for 'Crossbones System Information'.\n\nThis utility examines:\n\n· CPU and FPU\n· operating system\n· display\n· CPU speed\n· hard disk transfer speed")
  30.     (source "UK")
  31.     (dest "C:")
  32.     (all)
  33.     (infos)
  34.     (optional "nofail" "force")
  35.     (confirm)
  36. )
  37.  
  38. (copyfiles
  39.     (prompt "Copying Catalog Files")
  40.     (help "You should install the catalog files only if you want MicroPaint to use another language than English.")
  41.     (source "Catalogs")
  42.     (dest "LOCALE:Catalogs")
  43.     (all)
  44.     (infos)
  45.     (optional "nofail" "force")
  46.     (confirm)
  47. )
  48.  
  49. (message "\nInstallation complete.\n")
  50.  
  51. (exit (quiet))
  52.  
  53.