-
Notifications
You must be signed in to change notification settings - Fork 0
/
Build.PL
33 lines (31 loc) · 860 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
use 5.012;
use strict;
use warnings;
use Module::Build;
my $builder = Module::Build->new(
module_name => 'ms2view',
dist_abstract => 'A simple mass spectrum viewer with vim-like bindings',
dist_version_from => 'bin/ms2view',
license => 'GPL_3',
dist_author => q{Jeremy Volkening <[email protected]>},
configure_requires => {
'Module::Build' => 0,
},
build_requires => {
'Test::More' => 0,
},
requires => {
'Gtk3' => 0,
'Gtk3::SimpleList' => 0,
'MS' => 0,
'Pango::Cairo' => 0,
},
meta_merge => {
resources => {
repository => 'https://github.com/jvolkening/ms2view'
}
},
add_to_cleanup => [ 'ms2view-*' ],
create_license => 1,
);
$builder->create_build_script;