File: Makefile.PL

package info (click to toggle)
libtext-lorem-perl 0.34-1
  • links: PTS, VCS
  • area: main
  • in suites: bullseye
  • size: 100 kB
  • sloc: perl: 95; makefile: 2
file content (30 lines) | stat: -rw-r--r-- 875 bytes parent folder | download | duplicates (2)
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
use ExtUtils::MakeMaker;
WriteMakefile(
    NAME => 'Text::Lorem',
    ABSTRACT_FROM => 'lib/Text/Lorem.pm',
    VERSION_FROM => 'lib/Text/Lorem.pm',
    BUILD_REQUIRES => {
        'ExtUtils::MakeMaker' => '6.46',
    },
    CONFIGURE_REQUIRES => {
        'ExtUtils::MakeMaker' => '6.46',
    },
    TEST_REQUIRES => {
        'Test::More' => 0,
    },
    META_MERGE => {
        'meta-spec' => { version => 2 },
        resources => {
            bugtracker => {
                web => 'https://github.com/adeolaawoyemi/Text-Lorem/issues',
            },
            repository => {
                type => 'git',
                url  => 'https://github.com/adeolaawoyemi/Text-Lorem.git',
                web  => 'https://github.com/adeolaawoyemi/Text-Lorem',
            },
        },
    },
    LICENSE => 'perl_5',
    AUTHOR => 'Adeola Awoyemi <adeola@cpan.org>',
);