File: Makefile.PL

package info (click to toggle)
libgraphics-libplot-perl 2.2.4-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 204 kB
  • sloc: perl: 369; ansic: 238; makefile: 5
file content (28 lines) | stat: -rw-r--r-- 783 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
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',
    },
);