File: Build.PL

package info (click to toggle)
libcolor-library-perl 0.02-1
  • links: PTS, VCS
  • area: main
  • in suites: squeeze
  • size: 2,116 kB
  • ctags: 112
  • sloc: perl: 13,879; makefile: 2
file content (22 lines) | stat: -rw-r--r-- 598 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
use strict;
use warnings;
use Module::Build;

my $builder = Module::Build->new(
    module_name         => 'Color::Library',
    license             => 'perl',
    dist_author         => 'Robert Krimen <rkrimen@cpan.org>',
    dist_version_from   => 'lib/Color/Library.pm',
    build_requires => {
        'Test::More' => 0,
    },
    requires => {
        'Module::Pluggable' => 0,
        'Class::Accessor::Fast' => 0,
        'Class::Data::Inheritable' => 0,
    },
    add_to_cleanup      => [ 'Color-Library-*' ],
    create_makefile_pl => 'traditional',
);

$builder->create_build_script();