home *** CD-ROM | disk | FTP | other *** search
/ Amiga ISO Collection / AmigaUtilCD2.iso / Misc / MMS1_0.LHA / MMS / MMS-Install < prev    next >
Encoding:
Text File  |  1994-10-11  |  1.3 KB  |  59 lines

  1. ; Installscript for MMS (c) by kMel, Klaus Melchior
  2.  
  3. (set app_name "MMS")
  4. (set version "1.0")
  5. (set vers_name (cat app_name version))
  6.  
  7. (set bad_kick_text "You must even be using Kickstart 2.04 to run MMS.")
  8. (set bad_MUI_text "You must even be using MUI 2.1 to run MMS.")
  9. (set info_text "This script installs MMS to a place, where utilities can be found (e.g. bin:)."
  10. )
  11.  
  12. ; -------------------------------------------------------------------------
  13.  
  14. (transcript (cat "Installing " @vers_name " ..."))
  15.  
  16. (if    (< (/ (getversion) 65536) 37)
  17. (
  18.     (abort (cat info_text "\n\n\n" bad_kick_text) )
  19. )
  20. )
  21.  
  22. (if    (< (/ (getversion "libs:muimaster.library") 65536) 7)
  23. (
  24.     (abort (cat info_text "\n\n\n" bad_MUI_text) )
  25. )
  26. )
  27.  
  28. ; -------------------------------------------------------------------------
  29. (complete 0)
  30.  
  31. (message info_text)
  32.  
  33. ; -------------------------------------------------------------------------
  34. (complete 30)
  35.  
  36. (set destination
  37.     (askdir
  38.         (prompt (cat "Please select a place for " vers_name " . Normally select a directory in your commandpath."))
  39.         (help @askdir-help)
  40.         (default "bin:")
  41.     )
  42. )
  43.  
  44. (complete 60)
  45.  
  46. (copylib
  47.      (prompt (cat "Copying " vers_name))
  48.      (confirm)
  49.     (source app_name)
  50.     (dest destination)
  51.     (infos)
  52.     (help @copylib-help)
  53. )
  54.  
  55. ; -------------------------------------------------------------------------
  56. (complete 100)
  57.  
  58. (exit)
  59.