home *** CD-ROM | disk | FTP | other *** search
- ; INSTALLERSCRIPT for HTMLtext.mcc
- ; (C)opyright by Dirk Holtwick, 1997
- ; -----------------------------------------
-
- (message
- "\nHTMLtext\n"
- "Custom class for MUI\n"
- "© Dirk Holtwick, 1997\n\n"
- "This software is subject to the 'Standard Amiga FD-Software Copyright "
- "Note'. It is SHAREWARE as defined in paragraph 4s. For more information "
- "please read 'AFD-COPYRIGHT' (Version 1 or higher).\n\n"
- )
-
- ;
- ; Copy mcc and mcp
- ; ----------------
-
- (set #mcc "HTMLtext.mcc")
- (set #mcp "HTMLtext.mcp")
- (set #dst_path "Libs:MUI")
- (set #src_path "Libs/MUI")
-
- (set #dst_path
- (askdir
- (prompt "Where do you want to install HTMLtext class")
- (help @askdir-help)
- (default #dst_path)
- )
- )
-
- (copylib
- (prompt (cat "Copying " #mcc))
- (confirm)
- (source (tackon #src_path #mcc))
- (dest #dst_path)
- (help @copylib-help)
- )
-
- (copylib
- (prompt (cat "Copying " #mcp))
- (confirm)
- (source (tackon #src_path #mcp))
- (dest #dst_path)
- (help @copylib-help)
- )
-
- ;
- ; Copy moreHTML
- ; -------------
-
- (set #morehtml "moreHTML")
- (set #dst_path "SYS:Utilities")
- (set #src_path "")
-
- (set #dst_path
- (askdir
- (prompt "Where do you want to install moreHTML")
- (help @askdir-help)
- (default #dst_path)
- )
- )
-
- (copyfiles
- (prompt (cat "Copying " #morehtml))
- (help @copyfiles-help)
- (choices #morehtml)
- (source #src_path)
- (dest #dst_path)
- (infos)
- )
-
- ;
- ; Exit
- ; ----
-
- (exit
- (quiet)
- )
-
-