ctkBuildManifest

        - Build up the file list for MANIFEST.
                bypass *.bak, *.exe and *.zip files.
        - unlink the existing MANIFEST file in the cwd().
        - Write the list to the MANIFEST file.

Programming notes

None

Methods

_buildName

        Return the name of the build i.e. 'clickTk-4.011'
        (as ruled by Perl CPAN)
=cut

sub _buildName { my $build = shift; return 'clickTk'.'-'. $build; }

main

        Build the manifest file.
                - Descend the subdir tree BF.
                - print the file path into manifest file
                  using the global handle MAN.

Back to index