Disable dynamic_config and enable SIGN
authorMarius Gavrilescu <marius@ieval.ro>
Sat, 16 Aug 2014 21:11:17 +0000 (00:11 +0300)
committerMarius Gavrilescu <marius@ieval.ro>
Sat, 16 Aug 2014 21:12:03 +0000 (00:12 +0300)
Makefile.PL

index 41039faa64ce5d613937b44bb8d0c8f575d9b1aa..fddb4e4769a448c367521e8dec0275584af0b677 100644 (file)
@@ -1,3 +1,4 @@
+use 5.014000;
 use ExtUtils::MakeMaker;
 
 WriteMakefile(
@@ -7,20 +8,18 @@ WriteMakefile(
        AUTHOR            => 'Marius Gavrilescu <marius@ieval.ro>',
        MIN_PERL_VERSION  => '5.14.0',
        LICENSE           => 'perl',
+       SIGN              => 1,
        PREREQ_PM         => {
-               Storable => 0,
+               qw/Storable 0/,
        },
        BUILD_REQUIRES => {
-               File::Basename => 0,
-               File::Slurp => 0,
+               qw/File::Basename 0
+                  File::Slurp 0/,
        },
-       META_ADD => {
-               resources => {
-                       repository => {
-                               url => 'http://git.ieval.ro/git/mafia.git',
-                               web => 'http://git.ieval.ro/?p=mafia.git',
-                               type => 'git',
-                       }
+       META_MERGE         => {
+               dynamic_config => 0,
+               resources      => {
+                       repository => 'http://git.ieval.ro/?p=mafia.git',
                }
        }
 );
This page took 0.011458 seconds and 4 git commands to generate.