File: Build.PL

package info (click to toggle)
libclass-dbi-pg-perl 0.09-2
  • links: PTS
  • area: main
  • in suites: etch, etch-m68k, lenny
  • size: 76 kB
  • ctags: 3
  • sloc: perl: 98; makefile: 2
file content (23 lines) | stat: -rwxr-xr-x 574 bytes parent folder | download | duplicates (5)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
# $Id: /mirror/Class-DBI-Pg/Build.PL 1974 2006-05-20T01:18:11.362146Z daisuke  $
#
# Copyright (c) 2006 Daisuke Maki <dmaki@cpan.org>
# All rights reserved.

use strict;
use Module::Build;

my $build = Module::Build->new(
    dist_name => 'Class-DBI-Pg',
    dist_version_from => 'lib/Class/DBI/Pg.pm',
    requires => {
        'Class::DBI' => '>= 0.89',
        'DBD::Pg'    => '>= 1.13',
    },
    build_requires => {
        'Test::More' => 0
    },
    license => 'perl',
    create_readme => 1,
    create_makefile_pl => 'traditional',
);
$build->create_build_script;