File: Makefile.PL

package info (click to toggle)
libnet-cisco-mse-rest-perl 0.2-3
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, forky, sid, trixie
  • size: 100 kB
  • sloc: perl: 253; makefile: 2
file content (26 lines) | stat: -rw-r--r-- 720 bytes parent folder | download | duplicates (3)
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
use ExtUtils::MakeMaker;

WriteMakefile(
    NAME           => 'Net::Cisco::MSE::REST',
    VERSION_FROM   => 'lib/Net/Cisco/MSE/REST.pm',
    ABSTRACT_FROM  => 'lib/Net/Cisco/MSE/REST.pm',
    LICENSE        => 'GPL_3',
    PREREQ_PM => {
        'JSON'           => 0,
        'LWP::UserAgent' => 0,
        'HTTP::Request'  => 0,
    },
    TEST_REQUIRES  => {
        'Test::More' => 0,
    },
    META_MERGE => {
        'meta-spec' => { version => 2 },
        'resources' => {
            repository => {
                type => 'git',
                url  => 'git://github.com/fdurand/Net-Cisco-MSE-REST',
                web  => 'https://github.com/fdurand/Net-Cisco-MSE-REST'
            },
        }
    }
);