To add rccd:

    Assume that /IRAF is the directory where the iraf software resides.

    [1] Move the file rccd.par to /IRAF/local/tasks and the file rccd.hlp to
        /IRAF/local/tasks/doc.
	Go to the directory /IRAF/local/tasks.

    [2] Add the new rccd task to x_local.x.  

		task	pavg	= t_pavg,
			rccd    = t_rccd

    [3] Add the directory entry and the help file entry to local.hd

		$ccd		= "local$tasks/ccd/"

		rccd		hlp=doc$rccd.hlp,	src=ccd$t_rccd.x

	(so that HELP can find the new manual page).
        Add an entry to local.men 

		rccd - Convert a CCD image into an IRAF image

	(so that the task will be listed when `help local' is entered).

    [4] Add an entry to the library member list in the mkpkg file. 
		
		libpkg.a:
			pavg.x		<imhdr.h>
			@ccd
			;

    [5] Add an entry for the new task in local.cl, so that the CL will
	know about the new task when the LOCAL package is loaded.  

		task    pavg,
		        rccd		= "ltasks$x_local.e"	

    [6] Enter the command `mkpkg' to compile and link the new package
	executable `x_local.e'.  Install the new package executable in
	bin$ with the command `mkpkg install'.

    [7] Load the softools package and run `mkhelpdb' to recompile the help 
	database else HELP will not know about the new manual page.  Restart 
	the CL to cause HELP to pick up the new help database.

    [8] Load the LOCAL package in the CL, and run the new task.
