. '"'
. ' -DSVU_SIZE=' . $unit;
-my $BUILD_REQUIRES = {
- 'Config' => 0,
- 'ExtUtils::MakeMaker' => 0,
- 'File::Spec' => 0,
- 'Test::More' => 0,
-};
+my $dist = 'Scalar-Vec-Util';
-sub build_req {
- my $tometa = ' >> $(DISTVNAME)/META.yml;';
- my $build_req = 'echo "build_requires:" ' . $tometa;
- foreach my $mod ( sort { lc $a cmp lc $b } keys %$BUILD_REQUIRES ) {
- my $ver = $BUILD_REQUIRES->{$mod};
- $build_req .= sprintf 'echo " %-30s %s" %s', "$mod:", $ver, $tometa;
- }
- return $build_req;
-}
+my %META = (
+ configure_requires => {
+ 'Config' => 0,
+ 'ExtUtils::MakeMaker' => 0,
+ 'File::Spec' => 0,
+ },
+ build_requires => {
+ 'Config' => 0,
+ 'ExtUtils::MakeMaker' => 0,
+ 'Test::More' => 0,
+ },
+ resources => {
+ bugtracker => "http://rt.cpan.org/NoAuth/ReportBug.html?Queue=$dist",
+ homepage => "http://search.cpan.org/dist/$dist/",
+ license => 'http://dev.perl.org/licenses/',
+ repository => "http://git.profvince.com/perl/modules/$dist.git",
+ },
+);
WriteMakefile(
- NAME => 'Scalar::Vec::Util',
- AUTHOR => 'Vincent Pit <perl@profvince.com>',
- LICENSE => 'perl',
- VERSION_FROM => 'lib/Scalar/Vec/Util.pm',
- ABSTRACT_FROM => 'lib/Scalar/Vec/Util.pm',
- PL_FILES => {},
- C => \@C,
+ NAME => 'Scalar::Vec::Util',
+ AUTHOR => 'Vincent Pit <perl@profvince.com>',
+ LICENSE => 'perl',
+ VERSION_FROM => 'lib/Scalar/Vec/Util.pm',
+ ABSTRACT_FROM => 'lib/Scalar/Vec/Util.pm',
+ PL_FILES => {},
+ C => \@C,
@DEFINES,
- PREREQ_PM => {
+ PREREQ_PM => {
'Exporter' => 0,
'Carp' => 0,
'XSLoader' => 0
},
- dist => {
- PREOP => 'pod2text lib/Scalar/Vec/Util.pm > $(DISTVNAME)/README; '
- . build_req,
- COMPRESS => 'gzip -9f', SUFFIX => 'gz'
+ MIN_PERL_VERSION => 5.006,
+ META_MERGE => \%META,
+ dist => {
+ PREOP => 'pod2text lib/Scalar/Vec/Util.pm > $(DISTVNAME)/README',
+ COMPRESS => 'gzip -9f', SUFFIX => 'gz'
+ },
+ clean => {
+ FILES => "$dist-* *.gcov *.gcda *.gcno cover_db Debian_CPANTS.txt"
},
- clean => { FILES => 'Scalar-Vec-Util-* *.gcov *.gcda *.gcno cover_db Debian_CPANTS.txt' },
);
1;