Makefile.PL 1.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253
  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. },
  18. PREREQ_PM => {
  19. 'Math::Round' => 0,
  20. 'Carp' => 0,
  21. },
  22. META_MERGE => {
  23. 'meta-spec' => { version => 2 },
  24. resources => {
  25. repository => {
  26. type => 'git',
  27. url => 'https://github.com/paultrost/Disk-SMART-Perl.git',
  28. web => 'https://github.com/paultrost/Disk-SMART-Perl',
  29. },
  30. },
  31. license => ['gpl_2'],
  32. dist => { COMPRESS => 'gzip -9f', SUFFIX => 'gz', },
  33. clean => { FILES => 'Disk-SMART-*' },
  34. prereqs => {
  35. runtime => {
  36. requires => {
  37. 'perl' => '5.010',
  38. 'Carp' => 0,
  39. 'Math::Round' => 0,
  40. }
  41. },
  42. test => {
  43. requires => {
  44. 'Test::More' => 0,
  45. 'Test::Fatal' => 0,
  46. 'Test::Pod' => 0,
  47. 'Test::Pod::Coverage' => 0,
  48. }
  49. }
  50. }
  51. }
  52. );