summaryrefslogtreecommitdiff
path: root/Makefile.PL
blob: 9918d7468f89820eaa4940ef036f0d794ef38894 (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
use strict;
use ExtUtils::MakeMaker;
use Module::Metadata;

WriteMakefile(NAME         => 'Apache::Defaults',
	      VERSION_FROM => 'lib/Apache/Defaults.pm',
	      AUTHOR       => 'Sergey Poznyakoff <gray@gnu.org>',
	      LICENSE      => 'lgpl_2_1',
	      ABSTRACT_FROM  => 'lib/Apache/Defaults.pm',
	      PREREQ_PM    => {
		  'File::Spec' => '3.40',
		  'IPC::Open3' => '1.13',
		  'Shell::GetEnv' => '0.10',
		  'DateTime::Format::Strptime' => '1.54',
		  'Text::ParseWords' => '3.28'
      	      },
	      TEST_REQUIRES => {
		  'Test' => 0,
		  'File::Temp' => '0.23',
	      },
	      MIN_PERL_VERSION => 5.014002,
	      META_MERGE => {
		  'meta-spec' => { version => 2},
		  resources => {
		      repository => {
			  type => 'git',
			  url => 'git://git.gnu.org.ua/apache-defaults.git',
			  web => 'http://git.gnu.org.ua/cgit/apache-defaults.git'
		      },
		  },
  	          provides => Module::Metadata->provides(version => '1.4',
							 dir => 'lib')
	      }
);

Return to:

Send suggestions and report system problems to the System administrator.