The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.
use strict;
use warnings;
use Module::Build;

my $build = Module::Build->new(
    module_name => 'Catmandu::FedoraCommons',
    license => 'perl',
    dist_author => [
        'Patrick Hochstenbach <patrick.hochstenbach@ugent.be>',
    ],
    build_requires => {
        'Software::License' => 0,
        'Test::More' => '0.98',
    },
    requires => {
        'perl' => '5.10.1',
        'Catmandu' => '0.05',
        'Data::Validate::URI' => '0.06',
        'Data::Validate::Type' => '1.4.0',
        'HTTP::Request::Common' => '6.03',
        'RDF::Trine' => '1.003',
        'XML::LibXML' => '2.0014',
    },
    create_makefile_pl => 'traditional',
    create_license => 1,
);

$build->create_build_script;