Files
Data-Validate-Struct/Makefile.PL

30 lines
947 B
Makefile
Raw Normal View History

2014-11-05 17:58:51 +01:00
#
# Makefile.PL - build file for Date::Validate::Struct
#
2014-11-05 18:28:08 +01:00
# Copyright (c) 2007-2014 T. v.Dein <tom |AT| cpan.org>.
2014-11-05 17:58:51 +01:00
# All Rights Reserved. Std. disclaimer applies.
# Artificial License, same as perl itself. Have fun.
#
use ExtUtils::MakeMaker;
WriteMakefile(
NAME => 'Data::Validate::Struct',
VERSION_FROM => 'Struct.pm',
clean => { FILES => '*~ */*~' },
PREREQ_PM => {
'Regexp::Common' => 0,
'Data::Validate' => '0.06',
'Data::Validate::IP' => '0.18',
},
dist => { COMPRESS => 'gzip -9f', SUFFIX => 'gz', },
2014-11-07 08:58:16 +01:00
test => { TESTS => 't/*.t' },
'META_MERGE' => {
resources => {
repository => 'https://github.com/TLINDEN/Data-Validate-Struct',
},
},
2014-11-05 17:58:51 +01:00
);