forked from schwern/URI-Find
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathBuild.PL
42 lines (30 loc) · 944 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
32
33
34
35
36
37
38
39
40
41
42
#!/usr/bin/perl -w
use Module::Build 0.30;
require 5.006;
my $build = Module::Build->new(
module_name => 'URI::Find',
configure_requires => {
Module::Build => '0.30'
},
build_requires => {
Test::More => '0.88',
Module::Build => '0.30',
},
requires => {
perl => '5.8.8',
URI => '1.60',
},
license => 'perl',
dist_author => 'Michael G Schwern <[email protected]>',
meta_merge => {
resources => {
homepage => 'http://metacpan.org/release/URI-Find',
bugtracker => 'http://github.com/schwern/URI-Find/issues/',
repository => 'http://github.com/schwern/URI-Find/',
}
},
recursive_test_files => 1,
create_readme => 1,
create_license => 1,
);
$build->create_build_script;