]> git.donarmstrong.com Git - debhelper.git/blobdiff - dh_listpackages
Fix typo in French translation, about debian/package.README.Debian files.
[debhelper.git] / dh_listpackages
index 1123e6d2d7b09b3d0d58caa7137f3aeb952e4ddf..79b664bd71aaa065b85a825fb632095ac6ce7302 100755 (executable)
@@ -1,8 +1,39 @@
 #!/usr/bin/perl -w
-#
-# Output a list of all packages debhelper will act on.
 
+=head1 NAME
+
+dh_listpackages - list binary packages debhelper will act on
+
+=cut
+
+use strict;
 use Debian::Debhelper::Dh_Lib;
+
+=head1 SYNOPSIS
+
+B<dh_listpackages> [S<I<debhelper options>>]
+
+=head1 DESCRIPTION
+
+dh_listpackages is a debhelper program that outputs a list of all binary
+packages debhelper commands will act on. If you pass it some options, it
+will change the list to match the packages other debhelper commands would
+act on if passed the same options.
+
+=cut
+
 init();
+inhibit_log();
 print join("\n",@{$dh{DOPACKAGES}})."\n";
 
+=head1 SEE ALSO
+
+L<debhelper(7)>
+
+This program is a part of debhelper.
+
+=head1 AUTHOR
+
+Joey Hess <joeyh@debian.org>
+
+=cut