-
Notifications
You must be signed in to change notification settings - Fork 65
/
Build.PL
54 lines (49 loc) · 1.74 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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
#!/usr/bin/perl
use strict;
use warnings;
use Module::Build;
my $build = Module::Build->new(
module_name => 'App::rainbarf',
dist_abstract => 'CPU/RAM/battery stats chart bar for tmux (and GNU screen)',
dist_version_from => 'rainbarf',
script_files => ['rainbarf'],
license => 'perl',
create_license => 1,
create_readme => 1,
sign => 1,
meta_add => {
resources => {
bugtracker => 'https://github.com/creaktive/rainbarf/issues',
homepage => 'https://github.com/creaktive/rainbarf',
repository => 'git://github.com/creaktive/rainbarf.git',
},
x_contributors => [
'Chris Knadler <[email protected]>',
'cinaeco',
'Clemens Hammacher <[email protected]>',
'H.Merijn Brand <[email protected]>',
'Henrik Hodne <[email protected]>',
'Joe Hassick <[email protected]>',
'Josh Matthews <[email protected]>',
'Lars Engels <[email protected]>',
'Sergey Romanov <[email protected]>',
'Tom Cammann <[email protected]>',
'Tuomas Jormola <[email protected]>',
],
},
build_requires => {
'English' => '1.00',
'Test::More' => '0.45',
},
configure_requires => { 'Module::Build' => '0.28' },
requires => {
'Getopt::Long' => '2.32',
'List::Util' => '1.07_00',
'Pod::Usage' => '1.14',
'Storable' => '2.04',
'Term::ANSIColor' => '1.04',
'perl' => '5.008',
},
dynamic_config => 0,
);
$build->create_build_script;