The London Perl and Raku Workshop takes place on 26th Oct 2024. If your company depends on Perl, please consider sponsoring and/or attending.
#!/usr/bin/perl
use ExtUtils::MakeMaker;

WriteMakefile(
    AUTHOR              => 'Chia-liang Kao (clkao@clkao.org)',
    ABSTRACT            => 'Handle inheritable attributes in a hierarchical environment.',
    NAME                => 'Data::Hierarchy',
    VERSION_FROM        => 'Hierarchy.pm',
    DISTNAME            => 'Data-Hierarchy',
    PREREQ_PM           => {
        Test::Exception => '0',
    },
    dist                => {
        COMPRESS        => 'gzip -9',
        SUFFIX          => '.gz',
    },
);