Bump version and update Changes
[svg-spritemaker.git] / Makefile.PL
1 use 5.014000;
2 use ExtUtils::MakeMaker;
3
4 WriteMakefile(
5 NAME => 'SVG::SpriteMaker',
6 VERSION_FROM => 'lib/SVG/SpriteMaker.pm',
7 ABSTRACT_FROM => 'lib/SVG/SpriteMaker.pm',
8 AUTHOR => 'Marius Gavrilescu <marius@ieval.ro>',
9 EXE_FILES => ['svg-spritemaker'],
10 MIN_PERL_VERSION => 5.014000,
11 LICENSE => 'perl',
12 SIGN => 1,
13 PREREQ_PM => {
14 qw/SVG 0
15 SVG::Parser 0/,
16 },
17 META_MERGE => {
18 dynamic_config => 0,
19 resources => {
20 repository => 'https://git.ieval.ro/?p=svg-spritemaker.git'
21 },
22 }
23 );
This page took 0.020531 seconds and 4 git commands to generate.