File: Makefile.PL

package info (click to toggle)
libpgobject-type-bytestring-perl 1.2.3-2
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, forky, sid, trixie
  • size: 108 kB
  • sloc: perl: 70; makefile: 2
file content (36 lines) | stat: -rw-r--r-- 1,138 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
29
30
31
32
33
34
35
36
use 5.010;
use strict;
use warnings;
use ExtUtils::MakeMaker;

WriteMakefile(
    NAME                => 'PGObject::Type::ByteString',
    AUTHOR              => q{Erik Huelsmann <ehuels@gmail.com>},
    VERSION_FROM        => 'lib/PGObject/Type/ByteString.pm',
    ABSTRACT_FROM       => 'lib/PGObject/Type/ByteString.pm',
    ($ExtUtils::MakeMaker::VERSION >= 6.3002
      ? ('LICENSE'=> 'BSD')
      : ()),
    PL_FILES            => {},
    PREREQ_PM => {
        'PGObject'  => '1.403.2',
        'DBD::Pg'   => '1.20',
        'Ref::Util' => 0,
    },
    BUILD_REQUIRES => {
        'Test::More' => 0,
        'File::Slurp' => 0,
    },
    dist                => { COMPRESS => 'gzip -9f', SUFFIX => 'gz', },
    clean               => { FILES => 'PGObject-Type-ByteString-*' },
    META_MERGE => {
        'meta-spec' => { version => 2 },
         resources => {
             repository => {
                 type => 'git',
                 url  => 'https://github.com/ledgersmb/PGObject-Type-ByteString.git',
                 web  => 'https://github.com/ledgersmb/PGObject-Type-ByteString',
             },
         },
    },
);