File: Build.PL

package info (click to toggle)
libcgi-application-plugin-dbh-perl 4.00-1
  • links: PTS, VCS
  • area: main
  • in suites: wheezy
  • size: 124 kB
  • sloc: perl: 159; makefile: 2
file content (16 lines) | stat: -rw-r--r-- 463 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
use Module::Build;

Module::Build->new(
    module_name => 'CGI::Application::Plugin::DBH',
    license => 'perl',
    requires => {
        'CGI::Application' => 0,
        'DBI'              => 0,
        'DBD::Mock'        => .11,
    },
    create_makefile_pl => 'traditional',
    create_readme => 1,
    dist_author => 'Mark Stosberg <mark@summersault.com>',
    dist_abstract => 'Plugin that adds DBH support to CGI::Application',
)->create_build_script;