Bump version and update Changes
[image-openalpr.git] / Makefile.PL
CommitLineData
470f6420 1use 5.014000;
8c126694 2use Devel::CheckLib;
470f6420
MG
3use ExtUtils::MakeMaker;
4
8c126694
MG
5check_lib_or_exit
6 lib => 'openalprpy';
7
470f6420
MG
8WriteMakefile(
9 NAME => 'Image::OpenALPR',
10 VERSION_FROM => 'lib/Image/OpenALPR.pm',
11 ABSTRACT_FROM => 'lib/Image/OpenALPR.pm',
12 AUTHOR => 'Marius Gavrilescu <marius@ieval.ro>',
13 MIN_PERL_VERSION => '5.14.0',
14 LICENSE => 'open_source',
15 SIGN => 1,
8c126694
MG
16 CONFIGURE_REQUIRES => {
17 qw/Devel::CheckLib 0
18 ExtUtils::MakeMaker 0/,
19 },
470f6420
MG
20 PREREQ_PM => {
21 qw/Class::Accessor::Fast 0
22 JSON::MaybeXS 0/,
23 },
24 LIBS => ['-lopenalprpy'],
25 META_ADD => {
8c126694 26 dynamic_config => 1,
470f6420
MG
27 resources => {
28 repository => 'https://git.ieval.ro/?p=image-openalpr.git',
29 },
30 }
31);
This page took 0.010598 seconds and 4 git commands to generate.