forked from kvorg/CUWI
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathBuild.PL
More file actions
29 lines (26 loc) · 778 Bytes
/
Build.PL
File metadata and controls
29 lines (26 loc) · 778 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
#!/usr/bin/env perl
use Module::Build;
my $build = Module::Build->new
(
dist_name => 'CWB::CUWI',
dist_version_from => 'lib/CWB/CUWI.pm',
dist_abstract => 'Corpus Users\' Web Inteface with the CWB::Model backend',
dist_author => [
'Jan Jona Javorsek <jan.javorsek@guest.arnes.si>',
'Tomaz Erjavec <tomaz.erjavec@ijs.si>'
],
license => 'perl',
requires => {
'perl' => '5.10.1',
'Mojolicious' => '2.95',
'CWB::CQP' => 0,
},
build_requiers => {
'Software::Licence' => 0,
},
script_files => 'script/cuwi',
test_files => 't/*.t',
sign => 1,
dynamic_config => 0,
create_makefile_pl => 'passthrough',
)->create_build_script;