File: Build.PL

package info (click to toggle)
libcgi-application-plugin-json-perl 1.02-4
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 92 kB
  • sloc: perl: 153; makefile: 2
file content (19 lines) | stat: -r--r--r-- 475 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
use strict;
use warnings;
use Module::Build;
use lib './t/lib';

my $builder = Module::Build->new(
    module_name => 'CGI::Application::Plugin::JSON',
    license     => 'perl',
    dist_author => 'Michael Peters <mpeters@plusthree.com>',
    requires    => {
        'Test::More'       => 0,
        'CGI::Application' => 4.00,
        'JSON::Any'        => 1.14,
    },
    build_requires => {JSON => '2.02'},
    create_readme  => 1,
);

$builder->create_build_script();