Bump version and update Changes
[image-openalpr.git] / Makefile.PL
1 use 5.014000;
2 use Devel::CheckLib;
3 use ExtUtils::MakeMaker;
4
5 check_lib_or_exit
6 lib => 'openalprpy';
7
8 WriteMakefile(
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,
16 CONFIGURE_REQUIRES => {
17 qw/Devel::CheckLib 0
18 ExtUtils::MakeMaker 0/,
19 },
20 PREREQ_PM => {
21 qw/Class::Accessor::Fast 0
22 JSON::MaybeXS 0/,
23 },
24 LIBS => ['-lopenalprpy'],
25 META_ADD => {
26 dynamic_config => 1,
27 resources => {
28 repository => 'https://git.ieval.ro/?p=image-openalpr.git',
29 },
30 }
31 );
This page took 0.024365 seconds and 5 git commands to generate.