File: Makefile.PL

package info (click to toggle)
libpgobject-simple-role-perl 2.000002-1
  • links: PTS, VCS
  • area: main
  • in suites: buster
  • size: 136 kB
  • ctags: 13
  • sloc: perl: 159; makefile: 2
file content (24 lines) | stat: -rwxr-xr-x 706 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
#!/usr/bin/perl

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

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