Makefile.PL 589 B

1234567891011121314151617181920
  1. use 5.006;
  2. use strict;
  3. use warnings;
  4. use ExtUtils::MakeMaker;
  5. WriteMakefile(
  6. NAME => 'Disk::SMART',
  7. AUTHOR => q{Paul Trost <paul.trost@trostfamily.org>},
  8. VERSION_FROM => 'lib/Disk/SMART.pm',
  9. ABSTRACT_FROM => 'lib/Disk/SMART.pm',
  10. ($ExtUtils::MakeMaker::VERSION ge 6.3002
  11. ? ('LICENSE'=> 'perl')
  12. : ()),
  13. PL_FILES => {},
  14. PREREQ_PM => {
  15. 'Test::More' => 0,
  16. },
  17. dist => { COMPRESS => 'gzip -9f', SUFFIX => 'gz', },
  18. clean => { FILES => 'Disk-SMART-*' },
  19. );