Reformat Makefile.PL, add SIGN and repository
authorMarius Gavrilescu <marius@ieval.ro>
Sat, 30 Aug 2014 21:40:26 +0000 (00:40 +0300)
committerMarius Gavrilescu <marius@ieval.ro>
Sat, 30 Aug 2014 21:40:26 +0000 (00:40 +0300)
Makefile.PL

index 58710805fdb23b5e865e2368fa1154eff33299b6..476b826faf11a884b2711fe94b449dc127e6eecc 100644 (file)
@@ -1,31 +1,37 @@
 use ExtUtils::MakeMaker;
 
 WriteMakefile(
-    NAME              => 'App::FonBot::Daemon',
-    VERSION_FROM      => 'lib/App/FonBot/Daemon.pm',
-       MIN_PERL_VERSION  => "5.14.0",
+       NAME              => 'App::FonBot::Daemon',
+       VERSION_FROM      => 'lib/App/FonBot/Daemon.pm',
        ABSTRACT_FROM     => 'lib/App/FonBot/Daemon.pm',
        AUTHOR            => 'Marius Gavrilescu <marius@ieval.ro>',
        EXE_FILES         => ['fonbotd'],
+       MIN_PERL_VERSION  => "5.14.0",
        LICENSE           => 'AGPL_3',
-    PREREQ_PM         => {
-         Apache2::Authen::Passphrase => 0,
-         HTTP::Status    => 0,
-         IRC::Utils      => 0,
-         JSON            => 0,
-         Log::Log4perl   => 0,
-         POE             => 0,
-         POE::Component::IRC => 0,
-         POE::Component::IRC::Plugin::AutoJoin => 0,
-         POE::Component::IRC::Plugin::Connector => 0,
-         POE::Component::IRC::Plugin::NickServID => 0,
-         POE::Component::Server::HTTP => 0,
-         POE::Component::SSLify => 0,
+       SIGN              => 1,
+       PREREQ_PM         => {
+               qw/Apache2::Authen::Passphrase             0
+                  HTTP::Status                            0
+                  IRC::Utils                              0
+                  JSON                                    0
+                  Log::Log4perl                           0
+                  POE                                     0
+                  POE::Component::IRC                     0
+                  POE::Component::IRC::Plugin::AutoJoin   0
+                  POE::Component::IRC::Plugin::Connector  0
+                  POE::Component::IRC::Plugin::NickServID 0
+                  POE::Component::Server::HTTP            0
+                  POE::Component::SSLify                  0
 
-         # Built-in
-         DB_File          => 0,
-         MIME::Base64     => 0,
-         Storable         => 0,
-         Text::ParseWords => 0,
+                  DB_File          0
+                  MIME::Base64     0
+                  Storable         0
+                  Text::ParseWords 0/,
        },
+       META_ADD         => {
+               dynamic_config => 0,
+               resources      => {
+                       repository   => 'http://git.ieval.ro/?p=app-fonbot-daemon.git',
+               },
+       }
 );
This page took 0.010724 seconds and 4 git commands to generate.