forked from schwern/lingua-tlhinganhol-yighun
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathBuild.PL
40 lines (33 loc) · 1.1 KB
/
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
32
33
34
35
36
37
38
39
40
#!/usr/bin/perl -w
use strict;
use warnings;
use Module::Build;
my $builder = Module::Build->new(
module_name => 'Lingua::tlhInganHol::yIghun',
license => 'perl',
dist_author => 'Michael G Schwern <[email protected]>',
dist_version_from => 'lib/Lingua/tlhInganHol/yIghun.pm',
build_requires => {
'Test::More' => '0.47',
'Test::Harness' => 3
},
requires => {
'Filter::Simple' => '0.84',
perl => '5.8.1',
},
add_to_cleanup => [ 'Lingua-tlhInganHol-yIghun-*' ],
meta_merge => {
resources => {
homepage => "http://search.cpan.org/dist/Lingua-tlhInganHol-yIghun",
repository => "http://github.com/schwern/lingua-tlhinganhol-yighun/tree/master",
bugtracker => "http://rt.cpan.org/NoAuth/Bugs.html?Dist=Lingua-tlhInganHol-yIghun",
}
},
meta_add => {
author => [
'Damian Conway <[email protected]>',
'Michael G Schwern <[email protected]>',
]
},
);
$builder->create_build_script();