File: Makefile.PL

package info (click to toggle)
libsql-abstract-perl 1.72-1
  • links: PTS, VCS
  • area: main
  • in suites: wheezy
  • size: 532 kB
  • sloc: perl: 6,501; makefile: 14
file content (37 lines) | stat: -rw-r--r-- 1,009 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
33
34
35
36
37
use inc::Module::Install 1.0;
use strict;
use warnings;

use 5.006002;

perl_version '5.006002';
name 'SQL-Abstract';
author 'Nathan Wiger <nate@wiger.org>';
resources 'license'     => 'http://dev.perl.org/licenses/';
resources 'repository'  => 'git://git.shadowcat.co.uk/dbsrgits/SQL-Abstract.git';
resources 'bugtracker'  => 'http://rt.cpan.org/NoAuth/Bugs.html?Dist=SQL-Abstract';

all_from 'lib/SQL/Abstract.pm';

requires 'List::Util'   => 0;
requires 'Scalar::Util' => 0;
requires 'Class::Accessor::Grouped' => 0.10002;
requires 'Getopt::Long::Descriptive' => 0.086;
requires 'Hash::Merge' => 0.12;

test_requires "Test::More"      => 0.92;
test_requires "Test::Deep"      => 0.106;
test_requires "Test::Exception" => 0;
test_requires "Test::Warn"      => 0;
test_requires "Storable"        => 0;   # for cloning in tests

no_index package => 'DBIx::Class::Storage::Debug::PrettyPrint';
no_index directory => 'examples';

install_script 'format-sql';

tests_recursive 't';

auto_install();

WriteAll();