File: Makefile.PL

package info (click to toggle)
perlbrew 0.78-1%2Bdeb9u1
  • links: PTS, VCS
  • area: main
  • in suites: stretch
  • size: 708 kB
  • sloc: perl: 6,291; makefile: 6
file content (44 lines) | stat: -rw-r--r-- 1,036 bytes parent folder | download
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 inc::Module::Install;

license 'mit';

all_from 'lib/App/perlbrew.pm';

abstract 'App::perlbrew - Manage perl installations in your $HOME';

repository 'git://github.com/gugod/App-perlbrew.git';

requires
    'CPAN::Perl::Releases' => '2.60',
    'Capture::Tiny'        => '0.36',
    'Devel::PatchPerl'     => '1.40',
    'Pod::Parser'          => '1.63',
    'Pod::Usage'           => '1.68',
    'local::lib'           => '2.000014';

test_requires
    'ExtUtils::MakeMaker'  => '6.86',
    'File::Temp'           => '0.2304',
    'IO::All'              => '0.51',
    'Path::Class'          => '0.33',
    'Test::Exception'      => '0.32',
    'Test::More'           => '1.001002',
    'Test::NoWarnings'     => '1.04',
    'Test::Output'         => '1.03',
    'Test::Simple'         => '1.001002',
    'Test::Spec'           => '0.47';

author_requires
    'Pod::Markdown'        => '2.002';

install_script 'bin/perlbrew';

tests 't/*.t';

makemaker_args(
    dist => {
        COMPRESS => "zopfli -i50",
    }
);

WriteAll;