-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathBuild.PL
31 lines (28 loc) · 913 Bytes
/
Build.PL
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
#!/usr/bin/env perl
use strict;
use warnings;
use Module::Build;
my $build = Module::Build->new(
module_name => 'pgShark',
license => 'bsd',
requires => {
'perl' => '5.8.0',
'Net::Pcap' => 0,
'Digest::MD5' => 0,
},
create_packlist => 1,
create_readme => 1,
create_makefile_pl => 'traditional',
dist_version_from => 'lib/pgShark.pm',
dist_abstract => 'Messing with PostgreSQL network traffic',
#dist_author => 'Jehan-Guillaume (ioguix) de Rorthais <[email protected]>',
author_from => 'lib/pgShark.pm',
meta_merge => {
resources => {
homepage => 'https://github.com/dalibo/pgshark',
bugtracker => 'https://github.com/dalibo/pgshark/issues',
repository => 'https://github.com/dalibo/pgshark'
}
},
);
$build->create_build_script;