forked from FormFu/HTML-FormFu-Model-DBIC
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMakefile.PL
More file actions
29 lines (21 loc) · 838 Bytes
/
Makefile.PL
File metadata and controls
29 lines (21 loc) · 838 Bytes
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
use inc::Module::Install;
if ( -e 'MANIFEST.SKIP' ) {
system( 'pod2text lib/HTML/FormFu/Model/DBIC.pm > README' );
}
name 'HTML-FormFu-Model-DBIC';
perl_version '5.008001';
all_from 'lib/HTML/FormFu/Model/DBIC.pm';
repository 'git://github.com/fireartist/HTML-FormFu-Model-DBIC.git';
requires 'DBD::SQLite';
requires 'DBIx::Class' => '0.08108';
# DBIx::Class 0.08106 switched from DateTime::Format::MySQL to ::SQLite
# Rather than changing our prereqs depending on the installed version
# of DBIx::Class, just bump the required version
requires 'HTML::FormFu' => '0.09010';
requires 'List::MoreUtils';
requires 'Task::Weaken'; # to ensure Scalar::Util was built with weaken()
requires 'YAML::Syck';
test_requires 'DateTime::Format::SQLite';
test_requires 'SQL::Translator'; # for $schema->deploy()
tests_recursive;
&WriteAll;