File: Makefile.PL

package info (click to toggle)
libnet-snmp-interfaces-perl 1.4-3
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 196 kB
  • sloc: perl: 467; makefile: 2
file content (19 lines) | stat: -rw-r--r-- 648 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
use ExtUtils::MakeMaker;
WriteMakefile(
    'NAME'		=> 'Net::SNMP::Interfaces',
    'VERSION_FROM'	=> 'lib/Net/SNMP/Interfaces.pm', 
    LICENSE      => 'perl',
    META_MERGE => {
        'meta-spec' => { version => 2 },
        resources => {
            repository => {
                type => 'git',
                url  => 'https://github.com/jonathanstowe/Net-SNMP-Interfaces.git',
                web  => 'https://github.com/jonathanstowe/Net-SNMP-Interfaces',
            },
        },
    },
    AUTHOR  => 'Jonathan Stowe <jns@gellyfish.co.uk>',
    'PREREQ_PM'		=> {'Net::SNMP' => 0,
                         'Test::More' => 0.47 }, 
);