home *** CD-ROM | disk | FTP | other *** search
/ Amiga ISO Collection / AmigaUtilCD2.iso / MUI / MCCHTMLT.LHA / MCC_HTMLtext / Install < prev    next >
Encoding:
Text File  |  1997-04-02  |  1.4 KB  |  80 lines

  1. ; INSTALLERSCRIPT for HTMLtext.mcc
  2. ; (C)opyright by Dirk Holtwick, 1997
  3. ; -----------------------------------------
  4.  
  5. (message
  6.    "\nHTMLtext\n"
  7.    "Custom class for MUI\n"
  8.    "© Dirk Holtwick, 1997\n\n"
  9.    "This software is subject to the 'Standard Amiga FD-Software Copyright "
  10.    "Note'. It is SHAREWARE as defined in paragraph 4s. For more information "
  11.    "please read 'AFD-COPYRIGHT' (Version 1 or higher).\n\n"
  12. )
  13.  
  14. ;
  15. ; Copy mcc and mcp
  16. ; ----------------
  17.  
  18. (set #mcc      "HTMLtext.mcc")
  19. (set #mcp      "HTMLtext.mcp")
  20. (set #dst_path "Libs:MUI")
  21. (set #src_path "Libs/MUI")
  22.  
  23. (set #dst_path
  24.    (askdir
  25.       (prompt "Where do you want to install HTMLtext class")
  26.       (help @askdir-help)
  27.       (default #dst_path)
  28.    )
  29. )
  30.  
  31. (copylib
  32.    (prompt (cat "Copying " #mcc))
  33.    (confirm)
  34.    (source (tackon #src_path #mcc))
  35.    (dest #dst_path)
  36.    (help @copylib-help)
  37. )
  38.  
  39. (copylib
  40.    (prompt (cat "Copying " #mcp))
  41.    (confirm)
  42.    (source (tackon #src_path #mcp))
  43.    (dest #dst_path)
  44.    (help @copylib-help)
  45. )
  46.  
  47. ;
  48. ; Copy moreHTML
  49. ; -------------
  50.  
  51. (set #morehtml "moreHTML")
  52. (set #dst_path "SYS:Utilities")
  53. (set #src_path "")
  54.  
  55. (set #dst_path
  56.    (askdir
  57.       (prompt "Where do you want to install moreHTML")
  58.       (help @askdir-help)
  59.       (default #dst_path)
  60.    )
  61. )
  62.  
  63. (copyfiles
  64.    (prompt (cat "Copying " #morehtml))
  65.    (help @copyfiles-help)
  66.    (choices #morehtml)
  67.    (source  #src_path)
  68.    (dest    #dst_path)
  69.    (infos)
  70. )
  71.  
  72. ;
  73. ; Exit
  74. ; ----
  75.  
  76. (exit
  77.    (quiet)
  78. )
  79.  
  80.