Bump version and update Changes
[app-gallery.git] / Makefile.PL
1 use 5.014000;
2 use ExtUtils::MakeMaker;
3
4 WriteMakefile(
5 NAME => 'App::Gallery',
6 VERSION_FROM => 'lib/App/Gallery.pm',
7 ABSTRACT_FROM => 'lib/App/Gallery.pm',
8 AUTHOR => 'Marius Gavrilescu <marius@ieval.ro>',
9 EXE_FILES => ['gallery.pl'],
10 MIN_PERL_VERSION => '5.14.0',
11 LICENSE => 'perl',
12 SIGN => 1,
13 PREREQ_PM => {
14 qw/File::Slurp 0
15 HTML::Template::Compiled 0
16 Image::Magick 0/,
17 },
18 META_ADD => {
19 dynamic_config => 0,
20 resources => {
21 repository => 'https://git.ieval.ro/?p=app-gallery.git',
22 },
23 }
24 );
This page took 0.021922 seconds and 4 git commands to generate.