/*
** PHREL
** $Id: DIST,v 1.1 2006/03/06 02:42:24 sella Exp $
** Copyright (c) 2001-2004 Digital Genesis Software. All Rights Reserved.
** Released under the GPL Version 2 License.
** http://www.digitalgenesis.com
*/

NOTE: These instructions are for a developer building a distribution archive.

Assume we are starting within the users home directory.

> cd ~

Perform a clean checkout skipping empty directories.

> cvs checkout -P phrel

Update the version number and release dates within the files:

> cd phrel
> vi README ChangeLog INSTALL

Build a new configure script.

> autoconf

Run configure, to build the Makefiles.

> ./configure

Commit our changes.

> cvs commit

Run makedist.sh to build the tarballs (does a distclean).

> cd ~
> phrel/makedist.sh phrel 0.9.0

Perform tests on the tarball. If the release is clean, then mark the version within CVS. For example:

cd ~/phrel
cvs tag phrel-0_9_0 

