File: Build.PL

package info (click to toggle)
libtest-prereq-perl 1.037-1
  • links: PTS, VCS
  • area: main
  • in suites: squeeze, wheezy
  • size: 148 kB
  • ctags: 20
  • sloc: perl: 265; makefile: 20
file content (31 lines) | stat: -rw-r--r-- 586 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
# $Id$
# stolen from Module::Build

use lib qw(lib);  # Use Module::Build to test & install itself
use Module::Build;

my $build = new Module::Build
  (
   module_name => 'Module::Build',   
   license => 'perl',
   requires => {
		perl           => '5.6.0',
		Config         => 0,
		File::Copy     => 0,
		File::Find     => 0,
		File::Path     => 0,
		File::Basename => 0,
		File::Spec     => 0,
		Data::Dumper   => 0,
		Cwd            => 0,
	       },
   recommends => {
		  YAML => 0.35,
		  Archive::Tar => 0.22,
		 },
   dynamic_config => 1,
  );

$build->create_build_script;

1;