File: Build.PL

package info (click to toggle)
libtickit-console-perl 0.09-1
  • links: PTS, VCS
  • area: main
  • in suites: bullseye
  • size: 156 kB
  • sloc: perl: 774; makefile: 2
file content (30 lines) | stat: -rw-r--r-- 760 bytes parent folder | download
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
use strict;
use warnings;

use Module::Build;

my $build = Module::Build->new(
   module_name => 'Tickit::Console',
   requires => {
      'Object::Pad' => '0.27',
      'String::Tagged' => '0.10',
      'Tickit' => 0,
      'Tickit::Window' => '0.45', # rendering order
      'Tickit::Widget::Entry' => 0,
      'Tickit::Widget::Scroller' => '0.04',
      'Tickit::Widget::Tabbed' => '0.015', # rendering order
      'perl' => '5.026', # signatures in Object::Pad
   },
   configure_requires => {
      'Module::Build' => '0.4004', # test_requires
   },
   test_requires => {
      'Test::Identity' => 0,
      'Test::More' => '0.88', # done_testing
   },
   license => 'perl',
   create_license => 1,
   create_readme  => 1,
);

$build->create_build_script;