summaryrefslogtreecommitdiff
path: root/Build.PL
blob: 81cc5ceb32985070fd9fe878d7f99bfdf1dd26fc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
#!/usr/bin/perl 
use Module::Build;
my $build=Module::Build
  ->new(
        module_name=>'Template::Plugin::ASCIITable',
        dist_author=>'dakkar <dakkar@tehanutilus.net>',
        license=>'perl',
        dist_abstract=><<'END_ABSTRACT',
Allows you to use Text::ASCIITable in your templates.
END_ABSTRACT
        requires=>{
                   Text::ASCIITable=>0,
                   Template=>0,
                  },
        build_requires=>{
                         Test::More=>0,
                        },
        create_makefile_pl =>'traditional',
        sign=>1,
       );
$build->create_build_script;