-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathMakefile.PL
29 lines (28 loc) · 885 Bytes
/
Makefile.PL
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
use strict;
use ExtUtils::MakeMaker;
WriteMakefile(
NAME => 'Music::Tag',
VERSION_FROM => 'lib/Music/Tag.pm',
ABSTRACT_FROM => 'lib/Music/Tag.pm',
AUTHOR => 'Edward Allen (ealleniii _at_ cpan _dot_ org)',
EXE_FILES => ['bin/musictag'],
LICENSE => 'perl',
PREREQ_PM => {
'Config::Options' => 0.07,
'Data::Dumper' => 2.0,
'Digest::SHA1' => 2.11,
'Encode' => 2.12,
'File::Spec' => 3.24,
'IO::File' => 1.13,
'IO::Dir' => 1,
'Locale::Country' => 2.07,
'Test::More' => .1,
'File::Copy' => 2,
'Time::Local' => 1.1901,
'Scalar::Util' => 1.21,
'DateTimeX::Easy' => 0.088,
'File::stat' => 1,
'File::Slurp' => 1,
'Readonly' => 1,
},
);