| App-CPAN2Pkg documentation | view source | Contained in the App-CPAN2Pkg distribution. |
App::CPAN2Pkg - generating native linux packages from cpan
version 2.111781
$ cpan2pkg
$ cpan2pkg Module::Foo Module::Bar ...
Don't use this module directly, refer to the cpan2pkg script instead.
App::CPAN2Pkg is the main entry point for the cpan2pkg application. It
also provides some information about processed modules.
my @modules = $app->all_modules;
Return the list of all modules that have been / are being processed.
my $bool = $app->seen_module( $modname );
Return true if $modname has already been seen. It can be either
finished processing, or still ongoing.
$app->register_module( $modname, $module );
Store $module as the App::CPAN2Pkg::Module object tracking
$modname.
my $module = $app->module( $modname );
Return the $module object registered for $modname.
App::CPAN2Pkg->run( [ @modules ] );
Start the application, with an initial batch of @modules to build.
Please report any bugs or feature requests to app-cpan2pkg at
rt.cpan.org, or through the web interface at
http://rt.cpan.org/NoAuth/ReportBug.html?Queue=App-CPAN2Pkg. I will
be notified, and then you'll automatically be notified of progress on
your bug as I make changes.
You can look for information on this module at:
Jerome Quelin <jquelin@gmail.com>
This software is copyright (c) 2009 by Jerome Quelin.
This is free software; you can redistribute it and/or modify it under the same terms as the Perl 5 programming language system itself.
| App-CPAN2Pkg documentation | view source | Contained in the App-CPAN2Pkg distribution. |