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

WriteMakefile(
    NAME              => 'Config::HAProxy',
    VERSION_FROM      => 'lib/Config/HAProxy.pm',
    ABSTRACT_FROM     => 'lib/Config/HAProxy.pm',
    LICENSE           => 'gpl_3',
    AUTHOR            => 'Sergey Poznyakoff <gray@gnu.org>',
    MIN_PERL_VERSION  => 5.010,
    PREREQ_PM         => {
	'Carp'             => 0,
        'Clone'            => 0,
	'Text::Locus'      => 1.00,
        'Text::ParseWords' => 0,
	'File::Basename'   => 0,
	'File::Temp'       => 0,
	'IPC::Cmd'         => 0
    },
    META_MERGE        => {
	'meta-spec' => { version => 2 },
        resources => {
	    repository => {
		type => 'git',
                url => 'git://git.gnu.org.ua/config-haproxy.git',
		web => 'http://git.gnu.org.ua/cgit/config-haproxy.git/',
	    },
	    bugtracker => {
		web => 'https://puszcza.gnu.org.ua/bugs/?group=config-haproxy',
  	        mailto => 'gray+config-haproxy@gnu.org.ua'
            }	    
	},
	provides => Module::Metadata->provides(version => '1.4',
					       dir => 'lib')
    }    
);
    

Return to:

Send suggestions and report system problems to the System administrator.