Makefile.PL 1.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556
  1. use 5.010;
  2. use strict;
  3. use warnings;
  4. use ExtUtils::MakeMaker;
  5. WriteMakefile(
  6. NAME => 'Disk::SMART',
  7. AUTHOR => 'Paul Trost <ptrost@cpan.org>',
  8. VERSION_FROM => 'lib/Disk/SMART.pm',
  9. MIN_PERL_VERSION => '5.010',
  10. ABSTRACT_FROM => 'lib/Disk/SMART.pm',
  11. PL_FILES => {},
  12. TEST_REQUIRES => {
  13. 'Test::More' => 0,
  14. 'Test::Fatal' => 0,
  15. 'Test::Pod' => 0,
  16. 'Test::Pod::Coverage' => 0,
  17. 'Test::MockModule' => 0,
  18. },
  19. PREREQ_PM => {
  20. 'Math::Round' => 0,
  21. 'Carp' => 0,
  22. },
  23. META_MERGE => {
  24. 'meta-spec' => { version => 2 },
  25. resources => {
  26. repository => {
  27. type => 'git',
  28. url => 'https://github.com/paultrost/Disk-SMART-Perl.git',
  29. web => 'https://github.com/paultrost/Disk-SMART-Perl',
  30. },
  31. },
  32. license => ['gpl_2'],
  33. dist => { COMPRESS => 'gzip -9f', SUFFIX => 'gz', },
  34. clean => { FILES => 'Disk-SMART-*' },
  35. prereqs => {
  36. runtime => {
  37. requires => {
  38. 'perl' => '5.010',
  39. 'Carp' => 0,
  40. 'Math::Round' => 0,
  41. 'File::Which' => 0,
  42. }
  43. },
  44. test => {
  45. requires => {
  46. 'Test::More' => 0,
  47. 'Test::Fatal' => 0,
  48. 'Test::Pod' => 0,
  49. 'Test::Pod::Coverage' => 0,
  50. 'Test::MockModule' => 0,
  51. }
  52. }
  53. }
  54. }
  55. );