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 => 'Tickit::Widget::ScrollBox',
requires => {
'perl' => '5.026', # signatures
'Object::Pad' => '0.74', # 0.73 + bugfix
'Tickit::SingleChildWidget' => '0.53',
'Tickit::Style' => '0.35',
'Tickit::Window' => '0.39',
},
build_requires => {
'Test::More' => '0.88', # done_testing
'Test::Refcount' => 0,
'Tickit::Test' => '0.38', # bugfix to ICH/DCH scrollrect
},
auto_configure_requires => 0, # Don't add M::B to configure_requires
license => 'perl',
create_license => 1,
create_readme => 1,
meta_merge => {
resources => {
x_IRC => "irc://irc.freenode.net/#tickit",
},
},
);
$build->create_build_script;
|