summaryrefslogtreecommitdiff
path: root/Build.PL
blob: 5d8542ae26b73f64149efe20fd8e034b9ac0c717 (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 => 'mit',
  create_makefile_pl => 'passthrough',
  dist_author => 'Yoran Heling <yorhel@cpan.org>',
  requires => {
    POE => 0,
    DBD::Pg => '2.6.0',
  },
)->create_build_script;