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

# See lib/ExtUtils/MakeMaker.pm for details of how to influence
# the contents of the Makefile that is written.
WriteMakefile(
    NAME         => 'Siebel::Srvrmgr::Exporter',
    VERSION_FROM => 'lib/Siebel/Srvrmgr/Exporter.pm',    # finds $VERSION
    PREREQ_PM => { 'Siebel::Srvrmgr' => 0.15 },
    (
        $] >= 5.005
        ?    ## Add these new keywords supported since 5.005
          (
            ABSTRACT_FROM =>
              'lib/Siebel/Srvrmgr/Exporter.pm',  # retrieve abstract from module
            AUTHOR => 'Alceu Rodrigues de Freitas Junior <arfreitas@cpan.org>'
          )
        : ()
    ),
    TEST_REQUIRES => {
        'Test::Pod'           => 1.22,
        'Test::Pod::Coverage' => 1.08
    },
    EXE_FILES  => ['export_comps.pl'],
    META_MERGE => {
        resources => {
            license => 'http://www.gnu.org/licenses/gpl.txt',
            homepage =>
              'https://github.com/glasswalk3r/siebel-monitoring-tools',
            license  => 'http://www.gnu.org/licenses/gpl.txt',
            homepage => 'https://github.com/glasswalk3r/siebel-monitoring-tools',
            bugtracker =>
              'https://github.com/glasswalk3r/siebel-monitoring-tools/issues',
            repository =>
              'https://github.com/glasswalk3r/siebel-monitoring-tools'
        },
    },
    ( $ExtUtils::MakeMaker::VERSION >= 6.3002 ? ( 'LICENSE' => 'gpl', ) : () ),
    dist => { SUFFIX => '.gz', COMPRESS => 'gzip --best' }
);