aboutsummaryrefslogtreecommitdiff
path: root/Makefile.PL
blob: 13a762dd1dd13479e27797ff176041fbc408ad4d (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
# -*- perl -*-
use strict;
use warnings;
use ExtUtils::MakeMaker;
use Module::Metadata;

WriteMakefile(NAME      =>      'Config::Parser',
	      ABSTRACT_FROM  => 'lib/Config/Parser.pm',
	      VERSION_FROM  =>  'lib/Config/Parser.pm',
	      AUTHOR    =>      'Sergey Poznyakoff <gray@gnu.org>',
	      LICENSE   =>      'gpl_3',
	      MIN_PERL_VERSION => 5.016001,
	      PREREQ_PM         => {
		  'Carp'    => 0,
		  'Text::ParseWords' => '3.26',
		  'Data::Dumper' => '2.135_06',
		  'File::Temp'   => '0.22',
                  'Text::Locus'  => '1.01',
                  'Config::AST'  => '1.05'
	      },
	      META_MERGE        => {
		  'meta-spec' => { version => 2 },
		  resources => {
		      repository => {
			  type => 'git',
			  url => 'git://git.gnu.org.ua/config-parser.git',
			  web => 'http://git.gnu.org.ua/cgit/config-parser.git/',
		      },
		  },
		  provides => Module::Metadata->provides(version => '1.4',
							 dir => 'lib')
	      }
);

Return to:

Send suggestions and report system problems to the System administrator.