summaryrefslogtreecommitdiff
path: root/Makefile.PL
blob: e573b3046c26d0a6ae2c9f9e4d193fa41cf83c70 (plain)
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
34
35
36
37
38
39
40
use strict;
use ExtUtils::MakeMaker;
use Module::Metadata;

WriteMakefile(NAME         => 'Apache::Config::Preproc',
	      VERSION_FROM => 'lib/Apache/Config/Preproc.pm',
	      AUTHOR       => 'Sergey Poznyakoff <gray@gnu.org>',
	      LICENSE      => 'lgpl_2_1',
	      ABSTRACT_FROM  => 'lib/Apache/Config/Preproc.pm',
	      PREREQ_PM    => {
		  'Apache::Admin::Config' => '0.95',
		  'File::Spec' => '3.39_02',
		  'Text::ParseWords' => '3.27',
		  'Text::Locus' => '1.03',
		  'File::Spec' => 0,
		  'IPC::Open3' => 0
      	      },
	      TEST_REQUIRES => {
		  'File::Basename' => 0,
		  'File::Path' => 0,
		  'File::Temp' => 0,
		  'Test' => 0,
		  'autodie' => 0
	      },
	      MIN_PERL_VERSION => 5.014002,
	      META_MERGE => {
		  'meta-spec' => { version => 2 },
		  resources => {
		      repository => {
			  type => 'git',
			  url => 'git://git.gnu.org.ua/acpp.git',
			  web => 'http://git.gnu.org.ua/cgit/acpp.git/',
		      },
		  },
		  provides => Module::Metadata->provides(version => '1.4',
							 dir => 'lib')
	      }
	      
);
	      

Return to:

Send suggestions and report system problems to the System administrator.