summaryrefslogtreecommitdiff
path: root/Build.PL
blob: a2c116dfcef93358f26b63b49882780a58c719d6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#!/usr/bin/perl

use Module::Build;

Module::Build->new(
  module_name => 'POE::Component::Pg',
  license => 'perl',
  create_makefile_pl => 'passthrough',
  dist_author => 'Yoran Heling <yorhel@cpan.org>',
  requires => {
    POE => 0,
    DBD::Pg => '2.6.0',
  },
)->create_build_script;