-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathMakefile.PL
More file actions
30 lines (28 loc) · 871 Bytes
/
Makefile.PL
File metadata and controls
30 lines (28 loc) · 871 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
use ExtUtils::MakeMaker;
# See lib/ExtUtils/MakeMaker.pm for details of how to influence
# the contents of the Makefile that is written.
WriteMakefile(
NAME => 'Image::Hash',
VERSION_FROM => 'lib/Image/Hash.pm', # finds \$VERSION
AUTHOR => 'Runar Buvik (runarb@gmail.com)',
ABSTRACT => 'An image hashing library to calculate an images average hash, perception hash and difference hash.',
PREREQ_PM => {
'Test::Simple' => 0.44,
'List::Util' => 0,
'File::Slurp' => 0,
'GD' => 0,
'Carp' => 0,
},
META_MERGE => {
'meta-spec' => {
version => 2,
},
resources => {
repository => {
type => 'git',
url => "git://github.com/runarbu/PerlImageHash.git",
web => 'https://github.com/runarbu/PerlImageHash',
},
},
},
);