Initial commit
[app-gallery.git] / Makefile.PL
CommitLineData
b1336dac
MG
1use 5.014000;
2use ExtUtils::MakeMaker;
3
4WriteMakefile(
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/Image::Magick 0/,
15 },
16 META_ADD => {
17 dynamic_config => 0,
18 resources => {
19 repository => 'https://git.ieval.ro/?p=app-gallery.git',
20 },
21 }
22);
This page took 0.010893 seconds and 4 git commands to generate.