File: Build.PL

package info (click to toggle)
libcircle-fe-term-perl 0.240250-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 164 kB
  • sloc: perl: 1,003; makefile: 10
file content (45 lines) | stat: -rw-r--r-- 1,254 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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
use v5;
use strict;
use warnings;

use Module::Build;

my $build = Module::Build->new(
   module_name => 'Circle::FE::Term',
   dist_name   => 'circle-fe-term',
   requires => {
      'perl' => '5.026',
      'Object::Pad' => '0.800',
      'Syntax::Keyword::Match' => 0,

      'Convert::Color' => '0.06',
      'Convert::Color::XTerm' => 0,
      'IO::Async' => '0.14',
      'Net::Async::Tangence::Client' => '0.15',
      'String::Tagged' => 0,
      'Tangence::ObjectProxy' => '0.20_001',
      'Text::Balanced' => 0,
      'Tickit' => '0.55',
      'Tickit::App::Plugin::EscapePrefix' => 0,
      'Tickit::Async' => '0.21',
      'Tickit::Event' => '0.58',
      'Tickit::Style' => '0.40',
      'Tickit::Term' => '0.27',
      'Tickit::Widget::Entry' => '0.20',
      'Tickit::Widget::Entry::Plugin::Completion' => 0,
      'Tickit::Widget::HBox' => '0.32',
      'Tickit::Widget::Scroller' => '0.15',
      'Tickit::Widget::Tabbed' => '0.028',
      'Tickit::Widget::VBox' => '0.31',
      'Tickit::Window' => '0.42',
   },
   auto_configure_requires => 0, # Don't add M::B to configure_requires
   share_dir => {
      dist => "share",
   },
   license => 'perl',
   create_license => 1,
   create_readme  => 1,
);

$build->create_build_script;