1{ use 5.006; }
2use warnings;
3use strict;
4
5use Module::Build 0.26;
6
7my $build = Module::Build->new(
8	module_name => "Perl4::CoreLibs",
9	license => "perl",
10	dist_author => [
11		"Brandon S. Allbery",
12		"John Bazik",
13		"Tom Christiansen <tchrist\@convex.com>",
14		"Alexandr Ciornii (alexchorny at gmail.com)",
15		"Charles Collins",
16		"Joe Doupnik <JRD\@CC.USU.EDU>",
17		"Marion Hakanson <hakanson\@cse.ogi.edu>",
18		"Marc Horowitz <marc\@mit.edu>",
19		"Waldemar Kebsch <kebsch.pad\@nixpbe.UUCP>",
20		"Lee McLoughlin <lmjm\@doc.ic.ac.uk>",
21		"<A.Macpherson\@bnr.co.uk>",
22		"Dave Rolsky <autarch\@urth.org>",
23		"Randal L. Schwartz <merlyn\@stonehenge.com>",
24		"Aaron Sherman <asherman\@fmrco.com>",
25		"David Sundstrom <sunds\@asictest.sc.ti.com>",
26		"Wayne Thompson",
27		"Larry Wall <lwall\@jpl-devvax.jpl.nasa.gov>",
28		"Ilya Zakharevich",
29		"Andrew Main (Zefram) <zefram\@fysh.org>",
30	],
31	configure_requires => {
32		"Module::Build" => "0.26",
33		"perl" => "5.006",
34		"strict" => 0,
35		"warnings" => 0,
36	},
37	build_requires => {
38		"Config" => 0,
39		"IO::Handle" => 0,
40		"Module::Build" => "0.26",
41		"Test::More" => 0,
42		"perl" => "5.006",
43		"strict" => 0,
44		"warnings" => 0,
45	},
46	requires => {
47		"File::Find" => 0,
48		"Getopt::Long" => 0,
49		"IPC::Open2" => 0,
50		"IPC::Open3" => 0,
51		"Socket" => 0,
52		"Text::ParseWords" => "3.25",
53		"Time::Local" => 0,
54		"perl" => "5.006",
55		"strict" => 0,
56		"warnings" => 0,
57		"warnings::register" => 0,
58	},
59	dynamic_config => 0,
60	meta_add => { distribution_type => "module" },
61	create_makefile_pl => "passthrough",
62	sign => 1,
63);
64$build->add_build_element("pl");
65$build->create_build_script;
66
671;
68