]> git.vpit.fr Git - perl/modules/Scalar-Vec-Util.git/blobdiff - Makefile.PL
Freshen bitvect.h
[perl/modules/Scalar-Vec-Util.git] / Makefile.PL
index fc3276b1cde0b7daa417b11455c3ed107527a453..5f5b4159fb101f5b97136aab49dbe4364f94b459 100644 (file)
@@ -1,3 +1,5 @@
+use 5.006;
+
 use strict;
 use warnings;
 use ExtUtils::MakeMaker;
@@ -37,14 +39,15 @@ my $arch = $Config{archname} || '';
 my ($cpu) = $arch =~ /^([^-]+)/;
 
 my @DEFINES;
-my $unit;
+my $unit = 8;
 if (unpack("h*", pack("s", 0x1234)) != 4321) {
  print "Forcing unit size of 8 on non-little-endian systems.\n";
- $unit = 8;
 } else {
  my $align = int($Config{alignbytes} || 0);
  print "Checking unit size in bits... ";
- for (8, 16, 32, 64) {
+ my @s = (8, 16, 32);
+ push @s, 64 unless $^O eq 'MSWin32';
+ for (@s) {
   my $size = int($Config{'u' . $_ . 'size'} || 0);
   $unit = $_ if $size && $size <= $align;
  }
@@ -55,42 +58,50 @@ push @DEFINES, DEFINE => '-DBV_UNIT="'
                                  . '"'
                       . ' -DSVU_SIZE=' . $unit;
 
-my $BUILD_REQUIRES = {
- 'Config'              => 0,
- 'ExtUtils::MakeMaker' => 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/?p=perl%2Fmodules%2F$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' },
 );
 
 1;