File: Build.PL

package info (click to toggle)
libtext-asciitable-perl 0.22-3
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, forky, sid, trixie
  • size: 248 kB
  • sloc: perl: 923; makefile: 2
file content (14 lines) | stat: -rw-r--r-- 338 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
use Module::Build;
my $build = Module::Build->new
  (
   module_name => 'Text::ASCIITable',
   license => 'perl',
   requires => {
                'perl'           => '5.6.0',
                'Carp'						=> 0,
		'List::Util'	=> 0,
		'Encode'	=> 0
               },
		create_makefile_pl => 'passthrough',
  );
$build->create_build_script;