The London Perl and Raku Workshop takes place on 26th Oct 2024. If your company depends on Perl, please consider sponsoring and/or attending.
use strict;
use warnings;
use Module::Build;

my $builder = Module::Build->new(
    module_name         => 'WWW::Shorten::URLchen',
    license             => 'perl',
    dist_author         => q{Danijel Tasov <data@cpan.org>},
    dist_version_from   => 'lib/WWW/Shorten/URLchen.pm',
    dist_abstract       => 'WWW::Shorten plugin for URLchen.de',
    build_requires => {
        'Test::More' => 0,
    },
    requires => {
        'WWW::Shorten' => '3.00',
        'strict'       => 0,
        'warnings'     => 0,
        'Carp'         => 0,
        'base'         => 0,
        'Exporter'     => 0,
        'perl'         => '5.006',
    },
    add_to_cleanup      => [ 'WWW-Shorten-URLchen-*' ],
    meta_merge => {
        resources => {
            repository => 'http://github.com/datamuc/WWW-Shorten-URLchen',
        },
    },
);

$builder->create_build_script();