File: Build.PL

package info (click to toggle)
libcgi-application-plugin-config-simple-perl 1.01-2
  • links: PTS, VCS
  • area: main
  • in suites: buster, stretch
  • size: 104 kB
  • ctags: 4
  • sloc: perl: 125; makefile: 6
file content (16 lines) | stat: -rw-r--r-- 446 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#!/usr/bin/perl -w

use Module::Build;
my $build = Module::Build->new(
	module_name         => 'CGI::Application::Plugin::Config::Simple',
	license             => 'perl',
	requires            => {
		    'CGI::Application'  => 3.21,
		    'Exporter'          => 0,
            'Config::Simple'    => 0,
            'Test::More'        => 0,
		},
	create_makefile_pl  => 'traditional',
	create_readme       => 1,
	);
$build->create_build_script();