File: Makefile.PL

package info (click to toggle)
libpgobject-type-json-perl 2.000001-2
  • links: PTS, VCS
  • area: main
  • in suites: bullseye, buster
  • size: 124 kB
  • sloc: perl: 133; makefile: 2
file content (25 lines) | stat: -rw-r--r-- 735 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
use 5.010;
use strict;
use warnings;
use ExtUtils::MakeMaker;

WriteMakefile(
    NAME                => 'PGObject::Type::JSON',
    AUTHOR              => q{Chris Travers <chris.travers@gmail.com>},
    VERSION_FROM        => 'lib/PGObject/Type/JSON.pm',
    ABSTRACT_FROM       => 'lib/PGObject/Type/JSON.pm',
    ($ExtUtils::MakeMaker::VERSION >= 6.3002
      ? ('LICENSE'=> 'BSD')
      : ()),
    PL_FILES            => {},
    PREREQ_PM => {
        'PGObject'   => 0,
        'JSON'       => 0,
    },
    BUILD_REQUIRES => {
        'Test::More' => 0,
        'Carp::Always' => 0,
    },
    dist                => { COMPRESS => 'gzip -9f', SUFFIX => 'gz', },
    clean               => { FILES => 'PGObject-Type-JSON-*' },
);