#! /usr/bin/env perl # PODNAME: perldebs # ABSTRACT: List debian package names for Perl modules # inspired by https://stackoverflow.com/a/29881772 #!/usr/bin/env perl use strict; use warnings; use App::perldebs; my $app = App::perldebs->new; exit( $app->run ? 0 : 1 ); __END__ =pod =encoding UTF-8 =head1 NAME perldebs - List debian package names for Perl modules =head1 VERSION version 0.001 =head1 AUTHOR Gregor Goldbach <post@gregor-goldbach.de> =head1 COPYRIGHT AND LICENSE This software is copyright (c) 2019 by Gregor Goldbach. This is free software; you can redistribute it and/or modify it under the same terms as the Perl 5 programming language system itself. =cut