Codebase list libfunction-parameters-perl / v1.0702_01 Makefile_PL_settings
v1.0702_01

Tree @v1.0702_01 (Download .tar.gz)

Makefile_PL_settings @v1.0702_01raw · history · blame

# vi:set ft=perl:
use strict;
use warnings;

return (
    NAME   => 'Function::Parameters',
    AUTHOR => q{Lukas Mai <l.mai@web.de>},

    MIN_PERL_VERSION => '5.14.0',
    CONFIGURE_REQUIRES => {},
    BUILD_REQUIRES => {},
    TEST_REQUIRES => {
        'constant'    => 0,
        'strict'      => 0,
        'utf8'        => 0,
        'Dir::Self'   => 0,
        'Test::More'  => 0,
        'Test::Fatal' => 0,
    },
    PREREQ_PM => {
        'Carp'     => 0,
        'XSLoader' => 0,
        'warnings' => 0,
    },

    depend => {
        Makefile    => '$(VERSION_FROM)',
        '$(OBJECT)' => join(' ', glob 'hax/*.c.inc'),
    },

    test => { TESTS => find_tests_recursively_in('t') },

    bonus => { github => 'mauke' },
);