Makefile.PL 1.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. use 5.014000;
  2. use ExtUtils::MakeMaker;
  3. use File::ShareDir::Install;
  4. install_share 'share';
  5. WriteMakefile(
  6. NAME => 'App::Eduard',
  7. VERSION_FROM => 'lib/App/Eduard.pm',
  8. ABSTRACT_FROM => 'lib/App/Eduard.pm',
  9. AUTHOR => 'Marius Gavrilescu <marius@ceata.org>',
  10. EXE_FILES => ['eduard'],
  11. MIN_PERL_VERSION => '5.14.0',
  12. LICENSE => 'perl',
  13. SIGN => 1,
  14. PREREQ_PM => {
  15. qw/Email::Sender::Simple 0
  16. File::Share 0
  17. File::Slurp 0
  18. Getopt::Long 0
  19. MIME::Entity 5.419
  20. MIME::Parser 5.419
  21. Mail::GnuPG 0
  22. PerlX::Maybe 0
  23. Template 0
  24. Try::Tiny 0/,
  25. },
  26. BUILD_REQUIRES => {
  27. qw/ExtUtils::MakeMaker 0
  28. File::ShareDir::Install 0/,
  29. },
  30. META_MERGE => {
  31. dynamic_config => 0,
  32. resources => {
  33. repository => 'git://gitorious.org/ceata/ceata-eduard.git',
  34. }
  35. }
  36. );
  37. package MY;
  38. use File::ShareDir::Install qw/postamble/;