

; amigaguide Installer script. © THP/c!truS'95

      ; drugs/alcohol/pain/adrenalin. there must be other ways outta here.


; /******************************************************************************/

                                   ; Uh?

	(set #copying-amigaguidelib "Copying AmigaGuide.library to LIBS:")
	(set #copying-amigaguide  "Copying AmigaGuide to sys:Utilities/")
	(set #copying-amigaguidehelp "Copying Help.Guide to s:")

; /******************************************************************************/

                    ; Enough kacking around, let's GO!

(copylib
	(prompt "\n" #copying-amigaguidelib)
	(help @copylib-help)
	(source "libs/amigaguide.library")
	(dest "libs:")
	(confirm)
)


(copylib
	(prompt "\n" #copying-amigaguide)
	(help @copylib-help)
	(source "utilities/Amigaguide")
	(dest "sys:Utilities/")
	(infos)
	(confirm)
)


(copylib
	(prompt "\n" #copying-amigaguidehelp)
	(help @copylib-help)
	(source "s/Help.Guide")
	(dest "s:")
	(infos)
	(confirm)
)


(message "\nThe Amigaguide system for hypertext support has now been installed.")

(exit (quiet))

