~ubuntu-branches/ubuntu/saucy/libpostfix-parse-mailq-perl/saucy

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
use strict;
use warnings;

use ExtUtils::MakeMaker;

WriteMakefile(
  DISTNAME  => 'Postfix-Parse-Mailq',
  NAME      => 'Postfix::Parse::Mailq',
  AUTHOR    => 'Ricardo\ SIGNES\ \<rjbs\@cpan\.org\>',
  ABSTRACT  => 'parse the output of the postfix mailq command',
  VERSION   => '1.001',
  EXE_FILES => [ qw() ],
  (eval { ExtUtils::MakeMaker->VERSION(6.21) } ? (LICENSE => 'perl') : ()),
  PREREQ_PM    => {
    "Mixin::Linewise::Readers" => '0',
  },
);