Package::Builder - The great new Package::Builder!


Package-Builder documentation  | view source Contained in the Package-Builder distribution.

Index


VERSION

Top

Version 5.01

SYNOPSIS

Top

Quick summary of what the module does.

Perhaps a little code snippet.

    use Package::Builder;

    my $foo = Package::Builder->new();
    ...

EXPORT

Top

A list of functions that can be exported. You can delete this section if you don't export anything, such as for a purely object-oriented module.

FUNCTIONS

Top

extractArchive

isDocFile

isConfigFile

substituteAliasDir

getChangeLogs

checkVersionFormat

checkReleaseFormat

getParameterFromConfig Retrieve value from files (like .rpmmacros) =cut sub getParameterFromConfig { my $parameter = shift;

    my $res    = shift;
    my $opened = 1;
    open( MACROS, $macrosFile ) || ( $opened = 0 );
    if ($opened) {
        while (<MACROS>) {
            if (m/^\%$parameter\s+(.*)$/) {
                $res = $1;
            }
        }

        close(MACROS);
    }
    return $res;
}

getSpecTemplate

AUTHOR

Top

Jean-Marie RENOUARD, <jmrenouard at gmail.com>

BUGS

Top

Please report any bugs or feature requests to bug-package-builder at rt.cpan.org, or through the web interface at http://rt.cpan.org/NoAuth/ReportBug.html?Queue=Package-Builder. I will be notified, and then you'll automatically be notified of progress on your bug as I make changes.

SUPPORT

Top

You can find documentation for this module with the perldoc command.

    perldoc Package::Builder




You can also look for information at:

* RT: CPAN's request tracker

http://rt.cpan.org/NoAuth/Bugs.html?Dist=Package-Builder

* AnnoCPAN: Annotated CPAN documentation

http://annocpan.org/dist/Package-Builder

* CPAN Ratings

http://cpanratings.perl.org/d/Package-Builder

* Search CPAN

http://search.cpan.org/dist/Package-Builder

ACKNOWLEDGEMENTS

Top

COPYRIGHT & LICENSE

Top


Package-Builder documentation  | view source Contained in the Package-Builder distribution.