-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathMakefile.PL
More file actions
44 lines (39 loc) · 1.04 KB
/
Makefile.PL
File metadata and controls
44 lines (39 loc) · 1.04 KB
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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
use strict;
use warnings;
require 5.006;
use ExtUtils::MakeMaker;
WriteMakefile(
DISTNAME => 'App-CSV',
NAME => 'App::CSV',
AUTHOR => 'Gaal\ Yahas\ \<gaal\@forum2\.org\>',
ABSTRACT => 'Manipulate CSV files from the command line',
VERSION_FROM => 'lib/App/CSV.pm',
MIN_PERL_VERSION => 'v5.6.0',
SIGN => 1,
EXE_FILES => [ grep { /\w$/ } glob("bin/*") ],
(eval { ExtUtils::MakeMaker->VERSION(6.21) } ? (LICENSE => 'mit') : ()),
PREREQ_PM => {
'Text::CSV' => 0,
'Moose' => 0,
'MooseX::Getopt' => 0,
# Testing
'IO::String' => 0,
# Recommended
# 'Temp::TestDir' => 0,
# 'IPC::Run' => 0,
},
META_MERGE => {
'meta-spec' => { version => 2 },
resources => {
repository => {
type => 'git',
url => 'https://github.com/gaal/app-csv.git',
web => 'https://github.com/gaal/app-csv',
},
bugtracker => {
web => 'https://rt.cpan.org/Public/Dist/Display.html?Name=App-CSV',
mailto => 'bug-App-CSV@rt.cpan.org',
},
},
},
);