Files
Data-Validate-Struct/Makefile.PL

36 lines
1.3 KiB
Makefile
Raw Normal View History

2014-11-05 17:58:51 +01:00
#
# Makefile.PL - build file for Date::Validate::Struct
#
2016-06-02 13:35:50 +02:00
# Copyright (c) 2007-2016 T. v.Dein <tom |AT| cpan.org>.
2014-11-05 17:58:51 +01:00
# All Rights Reserved. Std. disclaimer applies.
2014-11-10 23:17:15 +01:00
# Artistic License, same as perl itself. Have fun.
2014-11-05 17:58:51 +01:00
#
use ExtUtils::MakeMaker;
WriteMakefile(
2016-06-02 13:35:50 +02:00
NAME => 'Data::Validate::Struct',
VERSION_FROM => 'Struct.pm',
2014-11-10 23:17:15 +01:00
ABSTRACT => 'Validate recursive hash structures',
LICENSE => 'perl',
AUTHOR => [
2016-06-02 13:35:50 +02:00
'Thomas v.Dein <tom@cpan.org>',
'Per Carlson <pelle@cpan.org>',
],
clean => { FILES => '*~ */*~' },
PREREQ_PM => {
'Regexp::Common' => 0,
'Data::Validate' => '0.06',
'Data::Validate::IP' => '0.18',
},
dist => { COMPRESS => 'gzip -9f', SUFFIX => 'gz', },
test => { TESTS => 't/*.t' },
2014-11-07 08:58:16 +01:00
'META_MERGE' => {
resources => {
2025-12-13 20:48:57 +01:00
repository => 'https://codeberg.org/scip/Data-Validate-Struct',
2014-11-07 08:58:16 +01:00
},
},
2016-06-02 13:35:50 +02:00
);
2014-11-05 17:58:51 +01:00