| 12345678910111213141516171819202122232425262728 |
- use ExtUtils::MakeMaker;
- WriteMakefile(
- NAME => 'Test::Mapper',
- AUTHOR => 'Troglodyne Internet Widgets',
- VERSION_FROM => 'lib/Test/Mapper.pm',
- ABSTRACT_FROM => 'lib/Test/Mapper.pm',
- LICENSE => 'artistic_2',
- MIN_PERL_VERSION => '5.010',
- PREREQ_PM => {
- 'DBI' => 0,
- 'DBD::SQLite' => 0,
- 'File::Touch' => 0,
- },
- TEST_REQUIRES => {
- 'Test::More' => 0,
- 'File::Temp' => 0,
- },
- META_MERGE => {
- 'meta-spec' => { version => 2 },
- resources => {
- repository => {
- type => 'git',
- url => 'https://git.troglodyne.net/Troglodyne/Test-Mapper.git',
- },
- },
- },
- );
|