File: Build.PL

package info (click to toggle)
libdata-float-perl 0.007-2
  • links: PTS
  • area: main
  • in suites: lenny
  • size: 156 kB
  • ctags: 8
  • sloc: perl: 538; makefile: 43
file content (33 lines) | stat: -rw-r--r-- 552 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
use warnings;
use strict;
no strict "subs";

use Module::Build;

Module::Build->new(
	module_name => "Data::Float",
	license => "perl",
	build_requires => {
		Module::Build => 0,
		Test::More => 0,
		perl => "5.006",
		strict => 0,
		warnings => 0,
	},
	requires => {
		Carp => 0,
		Exporter => 0,
		base => 0,
		constant => 0,
		integer => 0,
		perl => "5.006",
		strict => 0,
		warnings => 0,
	},
	dynamic_config => 0,
	meta_add => { distribution_type => "module" },
	create_makefile_pl => "passthrough",
	sign => 1,
)->create_build_script;

exit 0;