File: Makefile.PL

package info (click to toggle)
libtest-databaserow-perl 2.04-2
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, forky, sid, trixie
  • size: 296 kB
  • sloc: perl: 3,062; makefile: 2
file content (23 lines) | stat: -rw-r--r-- 600 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
use inc::Module::Install;

name           'Test-DatabaseRow';
all_from       'lib/Test/DatabaseRow.pm';

# any version of DBI will do, I guess...?
requires       'DBI'                   => 0;

# I don;t know what version of Scalar::Util first
# shipped with a working "blessed" function
# but at the time of writing this was the
# earliest version still on the CPAN and it did
# support blessed.
requires       'Scalar::Util'          => 1.21;

# T::B::T before 0.09 breaks with modern perls
build_requires 'Test::Builder::Tester' => 0.09;

license 'perl';
githubmeta;
author_tests('xt');

WriteAll;