File: Build.PL

package info (click to toggle)
libgraphics-colornames-perl 1.06-1
  • links: PTS
  • area: main
  • in suites: etch, etch-m68k
  • size: 592 kB
  • ctags: 90
  • sloc: perl: 1,380; makefile: 11
file content (27 lines) | stat: -rw-r--r-- 803 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
use Module::Build;

my $build = Module::Build->new
    (
     module_name => 'Graphics::ColorNames',
     license => 'perl',
     requires => {
       'perl'                       => '5.6.0',
       'base'                       => 0,
       'Carp'                       => 0,
       'IO::File'                   => 0,
       'Module::Load'               => 0.10,
     },
     recommends => {
       'Pod::Coverage'              => 0,
       'Test::Pod'                  => 1.00,
       'Test::Prereq'               => 0,
     },
     build_requires => {
       'Test::More'                 => 0,
     },
     create_makefile_pl => 'traditional',
     dist_author        => 'Robert Rothenberg <rrwo at cpan.org>',
     sign               => 1,
);

$build->create_build_script;