PageRenderTime 62ms CodeModel.GetById 28ms RepoModel.GetById 0ms app.codeStats 0ms

/Makefile.PL

https://bitbucket.org/lichtkind/app-gui-docular
Perl | 35 lines | 23 code | 10 blank | 2 comment | 0 complexity | 12648c4e8ded26878ea6bb77cacf7de6 MD5 | raw file
  1. use warnings;
  2. use strict;
  3. use inc::Module::Install;
  4. use 5.006;
  5. #eval {};
  6. #BEGIN {};
  7. name 'WxDocular';
  8. license 'gpl';
  9. author 'Herbert Breunung';
  10. homepage 'http://bitbucket.org/lichtkind/wxdocular/';
  11. bugtracker 'http://bitbucket.org/lichtkind/wxdocular/issues?status=new&status=open';
  12. all_from 'lib/Wx/Docular.pl';
  13. requires 'Cwd';
  14. requires 'File::Spec';
  15. requires 'File::UserConfig';
  16. requires 'Wx' => 0.90;
  17. requires 'YAML::Tiny' => 0.30;
  18. test_requires 'Test::More';
  19. test_requires 'Test::Script';
  20. test_requires 'Test::NoWarnings';
  21. install_share 'share';
  22. install_script 'bin/wxdocular';
  23. no_index 'directory' => qw{ t xt share inc };
  24. homepage 'http://bitbucket.org/lichtkind/wxdocular/overview';
  25. WriteAll;