summaryrefslogtreecommitdiff
path: root/Build.PL
blob: 432779fff098aa14d2bea36312224d0cdf053f70 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
use Module::Build;
my $build = Module::Build->new(
    module_name    => 'Config::File',
    dist_abstract  => 'Parse a simple configuration file',
    dist_author    => 'Gunnar Wolf <gwolf@gwolf.org>',
    license        => 'gpl',
    requires       => {},
    recommends     => {},
    build_requires => {
        Test::Pod           => 0,
        Test::Pod::Coverage => 0,
        Module::Build       => 0
    },
    meta_merge => {
        resources => {
            homepage   => 'http://github.com/stockholmuniversity/Config-File',
            repository => 'git://github.com/stockholmuniversity/Config-File.git'
        },
    },
    create_makefile_pl => 'passthrough'
);
$build->create_build_script;