The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.
use strict;use warnings;
use ExtUtils::MakeMaker;

WriteMakefile(
    NAME          => 'Health::BFI',
    AUTHOR        => q{Mohammad S Anwar <mohammad.anwar@yahoo.com>},
    VERSION_FROM  => 'lib/Health/BFI.pm',
    ABSTRACT_FROM => 'lib/Health/BFI.pm',
    dist          => { COMPRESS => 'gzip -9f', SUFFIX => 'gz', },
    clean         => { FILES => 'Health-BFI-*' },
    PREREQ_PM     => {
        'Test::More' => 0,
    },
    ($ExtUtils::MakeMaker::VERSION >= 6.3002
      ? ('LICENSE'=> 'perl')
      : ()),
);