-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathBuild.PL
More file actions
32 lines (30 loc) · 738 Bytes
/
Build.PL
File metadata and controls
32 lines (30 loc) · 738 Bytes
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
use strict;
use warnings;
use Module::Build;
my $build = Module::Build->new(
module_name => 'unigreek',
dist_abstract => 'convert from unigreek notation and back',
license => 'perl',
dist_author => [
'Nicolas Franck <nicolas.franck@ugent.be>'
],
build_requires => {
'Test::Exception' => 0,
'Test::More' => 0,
'Unicode::Normalize' => 0,
'FindBin' => 0
},
#configure_requires => { 'Module::Build' => 0.40 },
requires => {
'perl' => '5.10.1',
},
create_license => 1,
dist_version_from => 'lib/UniGreek.pm',
create_makefile_pl => 'traditional',
meta_merge => {
resources => {
repository => 'https://github.com/nicolasfranck/unigreek'
}
}
);
$build->create_build_script;