-
Notifications
You must be signed in to change notification settings - Fork 2
/
Makefile.PL
43 lines (41 loc) · 1.09 KB
/
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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
use strict;
use warnings;
use ExtUtils::MakeMaker;
WriteMakefile(
NAME => 'App::Virtualenv',
VERSION_FROM => 'lib/App/Virtualenv.pm',
MIN_PERL_VERSION => '5.010001',
PREREQ_PM => {
'local::lib' => '2.000004',
'ExtUtils::Installed' => '2.02',
'CPAN' => '2.00',
'Cwd' => '3.47',
'Lazy::Utils' => '1.17',
},
EXE_FILES => [qw(
lib/App/Virtualenv/virtualenv.pl
lib/App/Virtualenv/sh.pl
lib/App/Virtualenv/perl.pl
)],
AUTHOR => 'Orkun Karaduman <orkunkaraduman@gmail.com>',
ABSTRACT => 'Perl virtual environment',
LICENSE => 'gpl_3',
META_MERGE => {
'meta-spec' => {
version => 2,
},
resources => {
homepage => 'https://metacpan.org/release/App-Virtualenv',
license => 'https://www.gnu.org/licenses/gpl-3.0.html',
repository => {
type => 'git',
url => 'git://git@github.com:orkunkaraduman/perl5-virtualenv.git',
web => 'https://github.com/orkunkaraduman/perl5-virtualenv',
},
bugtracker => {
web => 'https://github.com/orkunkaraduman/perl5-virtualenv/issues',
mailto => 'bug-App-Virtualenv@rt.cpan.org',
},
},
},
);