Added lots more modules from lintian. Maemian appears to work.
[maemian] / lib / Maemian / Command.pm
index 053fb70..46c361d 100644 (file)
@@ -33,11 +33,11 @@ use IPC::Run qw(run harness kill_kill);
 
 =head1 NAME
 
-Lintian::Command - Utilities to execute other commands from lintian code
+Maemian::Command - Utilities to execute other commands from lintian code
 
 =head1 SYNOPSIS
 
-    use Lintian::Command qw(spawn);
+    use Maemian::Command qw(spawn);
 
     # simplest possible call
     my $success = spawn({}, ['command']);
@@ -59,10 +59,10 @@ Lintian::Command - Utilities to execute other commands from lintian code
 
 =head1 DESCRIPTION
 
-Lintian::Command is a thin wrapper around IPC::Run, that catches exception
+Maemian::Command is a thin wrapper around IPC::Run, that catches exception
 and implements a useful default behaviour for input and output redirection.
 
-Lintian::Command provides a function spawn() which is a wrapper
+Maemian::Command provides a function spawn() which is a wrapper
 around IPC::Run::run() resp. IPC::Run::start() (depending on whether a
 pipe is requested).  To wait for finished child processes, it also
 provides the reap() function as a wrapper around IPC::Run::finish().
@@ -315,12 +315,12 @@ __END__
 
 =head1 EXPORTS
 
-Lintian::Command exports nothing by default, but you can export the
+Maemian::Command exports nothing by default, but you can export the
 spawn() and reap() functions.
 
 =head1 AUTHOR
 
-Originally written by Frank Lichtenheld <djpig@debian.org> for Lintian.
+Originally written by Frank Lichtenheld <djpig@debian.org> for Maemian.
 
 =head1 SEE ALSO