summaryrefslogtreecommitdiff
path: root/Makefile.PL
blob: 8922c55499bc06aa6f976cf23af5d3a5dce5601c (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
use 5.010001;

use strict;
use ExtUtils::MakeMaker;
use Module::Metadata;

WriteMakefile(
    NAME => 'Mojo::Log::Syslog',
    VERSION_FROM => 'lib/Mojo/Log/Syslog.pm',
    ABSTRACT_FROM => 'lib/Mojo/Log/Syslog.pm',
    AUTHOR => 'Sergey Poznyakoff <gray@gnu.org>',
    LICENSE      => 'artistic_2',
    PREREQ_PM => {
	'Mojolicious' => '7.58',
	'Sys::Syslog' => 0
    },
    META_MERGE   => {
	'meta-spec' => { version => 2 },
	resources => {
	    repository => {
		type => 'git',
		url => 'git://git.gnu.org.ua/mojosyslog.git',
		web => 'http://git.gnu.org.ua/cgit/mojosyslog.git/',
	    },
	}
    }
);

Return to:

Send suggestions and report system problems to the System administrator.