File: README.md

package info (click to toggle)
libextutils-makemaker-cpanfile-perl 0.06-1
  • links: PTS, VCS
  • area: main
  • in suites: jessie, jessie-kfreebsd
  • size: 108 kB
  • ctags: 6
  • sloc: perl: 112; makefile: 2
file content (42 lines) | stat: -rw-r--r-- 915 bytes parent folder | download | duplicates (4)
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
# NAME

ExtUtils::MakeMaker::CPANfile - cpanfile support for EUMM

# SYNOPSIS

    # Makefile.PL
    use ExtUtils::MakeMaker;
    use ExtUtils::MakeMaker::CPANfile;
    
    WriteMakefile(
      NAME => 'Foo::Bar',
      AUTHOR => 'A.U.Thor <author@cpan.org>',
    );
    
    # cpanfile
    requires 'ExtUtils::MakeMaker' => '6.17';
    on test => sub {
      requires 'Test::More' => '0.88';
    };

# DESCRIPTION

ExtUtils::MakeMaker::CPANfile loads C<cpanfile> in your distribution
and modifies parameters for C<WriteMakefile> in your Makefile.PL.
Just use it after L<ExtUtils::MakeMaker>, and prepare C<cpanfile>.

# LIMITATION

As of this writing, complex version ranges in the cpanfile are
simply ignored.

# LICENSE

Copyright (C) Kenichi Ishigaki.

This library is free software; you can redistribute it and/or modify
it under the same terms as Perl itself.

# AUTHOR

Kenichi Ishigaki <ishigaki@cpan.org>