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
|
use strict;
use warnings;
use ExtUtils::MakeMaker;
use Devel::CheckLib qw(check_lib_or_exit);
check_lib_or_exit( lib => [ 'plot' ] );
WriteMakefile(
NAME => 'Graphics::Libplot',
VERSION_FROM => 'Libplot.pm',
LIBS => '-lplot',
AUTHOR => 'John Lapeyre <jlapeyre cpan.org>',
META_MERGE => {
"meta-spec" => { version => 2 },
resources => {
bugtracker => {web=>'https://github.com/mohawk2/Graphics-Libplot/issues'},
repository => {
url => 'git://github.com/mohawk2/Graphics-Libplot.git',
type => 'git',
web => 'https://github.com/mohawk2/Graphics-Libplot',
},
x_IRC => 'irc://irc.perl.org/#pdl',
},
},
CONFIGURE_REQUIRES => {
'Devel::CheckLib' => '1.14',
},
);
|