forked from cfaerber/Net-IDN-Encode
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Build.PL
48 lines (40 loc) · 1008 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
43
44
45
46
47
48
require 5.008005;
use strict;
use utf8;
use Module::Build;
my $b = Module::Build->new(
'module_name' => 'Net::IDN::Encode',
'license' => 'perl',
'dist_author' => 'Claus Färber <[email protected]>',
'dist_abstract' => 'Internationalizing Domain Names in Applications (UTS #46)',
'sign' => 1,
'create_license' => 1,
'create_makefile_pl' => 'traditional',
'requires' => {
'Unicode::Normalize' => 0,
'perl' => 5.008005,
},
'build_requires' => {
'Test::More' => 0,
'Test::NoWarnings' => 0,
},
'needs_compiler' => undef,
'PL_Files' => {
'lib/Unicode/UTS46/_Mapping.PL' => [
'lib/Unicode/UTS46/_Mapping.pm',
],
'lib/Unicode/UTS46/GenTests.PL' => [
't/uts46_to_ascii.t',
't/uts46_to_ascii-trans.t',
't/uts46_to_unicode.t',
],
},
'no_index' => {
'directory' => ['eg', 'data']
},
'resources' => {
'homepage' => 'http://search.cpan.org/dist/Net-IDN-Encode',
'repository' => 'http://github.com/cfaerber/Net-IDN-Encode',
},
);
$b->create_build_script;