File: Makefile.PL

package info (click to toggle)
libgd-barcode-perl 2.00-1
  • links: PTS, VCS
  • area: main
  • in suites: sid, trixie
  • size: 11,380 kB
  • sloc: perl: 6,560; makefile: 2
file content (24 lines) | stat: -rw-r--r-- 768 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
use ExtUtils::MakeMaker;
# See lib/ExtUtils/MakeMaker.pm for details of how to influence
# the contents of the Makefile that is written.
WriteMakefile(
    NAME         => 'GD::Barcode',
    VERSION_FROM => 'lib/GD/Barcode.pm',
    ABSTRACT_FROM     => 'lib/GD/Barcode.pm',
    PREREQ_PM => {
        Exporter => 0,
        parent   => 0,
    },
    TEST_REQUIRES => {
        "Test2::V0" => "0.000060",
    },
    INSTALLDIRS => ($] < 5.011 ? 'perl' : 'site'),
    LICENSE            => 'perl',
    AUTHOR             => 'Kawai Takanori <GCD00051@nifty.ne.jp>',
    META_MERGE => {
        resources => {
            repository => 'https://github.com/mbeijen/GD-Barcode',
            bugtracker => 'https://github.com/mbeijen/GD-Barcode/issues',
        },
    },
);