File: Makefile.PL

package info (click to toggle)
libanyevent-dbd-pg-perl 0.03-4
  • links: PTS, VCS
  • area: main
  • in suites: jessie, jessie-kfreebsd
  • size: 212 kB
  • ctags: 149
  • sloc: perl: 2,186; makefile: 2
file content (22 lines) | stat: -rw-r--r-- 363 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
20
21
22
use inc::Module::Install;

name     'AnyEvent-DBD-Pg';
all_from 'lib/AnyEvent/DBD/Pg.pm';
author   q{Mons Anderson <mons@cpan.org>};
license  'perl';

build_requires 'Test::More';
build_requires 'lib::abs';

requires 'common::sense',3;
requires 'AnyEvent',5;
requires 'Scalar::Util';
requires 'DBI';
requires 'DBD::Pg';

auto_provides;

auto_install;

WriteAll;