File: Makefile.PL

package info (click to toggle)
libcvss-perl 1.14-1
  • links: PTS, VCS
  • area: main
  • in suites: sid
  • size: 380 kB
  • sloc: perl: 4,409; makefile: 2
file content (32 lines) | stat: -rw-r--r-- 1,086 bytes parent folder | download
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
29
30
31
32
#!perl

use strict;
use warnings;
use ExtUtils::MakeMaker;

WriteMakefile(
    NAME               => 'CVSS',
    AUTHOR             => q{Giuseppe Di Terlizzi <gdt@cpan.org>},
    VERSION_FROM       => 'lib/CVSS.pm',
    LICENSE            => 'artistic_2',
    EXE_FILES          => ['bin/cvss'],
    MIN_PERL_VERSION   => 5.010,
    PL_FILES           => {},
    CONFIGURE_REQUIRES => {'ExtUtils::MakeMaker' => '0'},
    TEST_REQUIRES      => {'Test::More' => '0', 'JSON::PP' => '0'},
    PREREQ_PM          => {'List::Util' => '0', 'JSON::PP' => '0'},
    META_MERGE         => {
        'meta-spec' => {version => 2},
        'resources' => {
            bugtracker => {web => 'https://github.com/giterlizzi/perl-CVSS/issues'},
            repository => {
                type => 'git',
                url  => 'git://github.com/giterlizzi/perl-CVSS',
                web  => 'https://github.com/giterlizzi/perl-CVSS'
            },
        },
        x_purl => 'pkg:cpan/GDT/CVSS'
    },
    dist  => {COMPRESS => 'gzip -9f', SUFFIX => 'gz'},
    clean => {FILES    => 'CVSS-*'},
);