RPM Build
 * If your account is setup for building rpms, then producing the full set of
   RPMs for your system can be done with the following command:
   > rpmbuild -ta <tarball>

Debian packaging
  * Before distribution, the file debian/changelog need to be modified.
    - The date can be inputted using the following date command:
      > date "+%a, %d %b %Y %T %z"
  * This package contains the debian subdirectory. To build the debian
    packages from this source, one must first create a tarball of the source
    minus the debian package. This can be done with the following set of
    commands:
    > tar xfz <tarball>
    > tar --exclude debian -c -z -f <tarbal_orig> <untarred_dir>
  * Building of the packages is done with
    > cd <untarred_dir>
    > dpkg-buildpackage -uc -us -tc
