Add edwardng to EXE_FILES
[app-edwardng.git] / Makefile.PL
index 99e91db34db0f1312fee945db8753ebefaa89ddc..3a6da45460085f63028cbf76e409a547c8f5d4f4 100644 (file)
@@ -1,16 +1,21 @@
 use 5.014000;
 use ExtUtils::MakeMaker;
+use File::ShareDir::Install;
+
+install_share 'share';
 
 WriteMakefile(
        NAME              => 'App::EdwardNG',
        VERSION_FROM      => 'lib/App/EdwardNG.pm',
        ABSTRACT_FROM     => 'lib/App/EdwardNG.pm',
        AUTHOR            => 'Marius Gavrilescu <marius@ieval.ro>',
+       EXE_FILES         => ['edwardng'],
        MIN_PERL_VERSION  => '5.14.0',
        LICENSE           => 'perl',
        SIGN              => 1,
        PREREQ_PM         => {
                qw/Email::Sender::Simple 0
+                  File::Share           0
                   File::Slurp           0
                   Getopt::Long          0
                   MIME::Entity          5.419
@@ -18,7 +23,11 @@ WriteMakefile(
                   Mail::GnuPG           0
                   PerlX::Maybe          0
                   Template              0
-                  Try::Tiny             0/
+                  Try::Tiny             0/,
+       },
+       BUILD_REQUIRES     => {
+               qw/ExtUtils::MakeMaker     0
+                  File::ShareDir::Install 0/,
        },
        META_MERGE         => {
                dynamic_config => 0,
@@ -27,3 +36,6 @@ WriteMakefile(
                }
        }
 );
+
+package MY;
+use File::ShareDir::Install qw/postamble/;
This page took 0.010117 seconds and 4 git commands to generate.