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',
},
},
);
|