-
Notifications
You must be signed in to change notification settings - Fork 0
/
Makefile.PL
38 lines (34 loc) · 1.06 KB
/
Makefile.PL
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
37
38
#!/usr/bin/env perl
use 5.008001;
use strict;
use warnings;
use ExtUtils::MakeMaker 6.64;
WriteMakefile(
NAME => 'DBIx::Class::ExtraColumns',
AUTHOR => 'Denis Ibaev <[email protected]>',
VERSION_FROM => 'lib/DBIx/Class/ExtraColumns.pm',
ABSTRACT_FROM => 'lib/DBIx/Class/ExtraColumns.pm',
LICENSE => 'perl',
MIN_PERL_VERSION => '5.008001', # like DBIx::Class
CONFIGURE_REQUIRES => {
'ExtUtils::MakeMaker' => '6.64',
},
TEST_REQUIRES => {
'Test::More' => 0,
},
PREREQ_PM => {
'parent' => 0,
'DBIx::Class' => 0,
},
META_MERGE => {
resources => {
license => 'http://dev.perl.org/licenses/',
repository => 'http://github.com/dionys/dbix-class-extracolumns',
bugtracker => 'http://github.com/dionys/dbix-class-extracolumns/issues',
},
no_index => {directory => ['t']},
},
dist => {COMPRESS => 'gzip -9f', SUFFIX => 'gz'},
clean => {FILES => 'DBIx-Class-ExtraColumns-*'},
test => {TESTS => 't/*.t'},
);