aboutsummaryrefslogblamecommitdiff
path: root/Makefile.PL
blob: fd5e553f62ce6ee90e3c79d705e5263c872fcef8 (plain) (tree)
1
2
3
4
5
6
7
8
9
10





                        
                                          
                                                          

                                                








                                     



                          
                   

                                  
                                  


                                                



                                                                             
      
                                                         
                                             
  
use 5.006;
use strict;
use warnings;
use ExtUtils::MakeMaker;

WriteMakefile(
    NAME             => 'List::Breakdown',
    AUTHOR           => 'Tom Ryder <tom@sanctum.geek.nz>',
    VERSION_FROM     => 'lib/List/Breakdown.pm',
    ABSTRACT_FROM    => 'lib/List/Breakdown.pm',
    LICENSE          => 'artistic_2',
    PL_FILES         => {},
    MIN_PERL_VERSION => '5.006',
    CONFIGURE_REQUIRES => {
        'ExtUtils::MakeMaker' => '0',
    },
    BUILD_REQUIRES => {
        'Test::More' => '0',
    },
    PREREQ_PM => {
        'Carp'     => '0',
        'Exporter' => '0',
    },
    META_MERGE => {
        provides => {
            'List::Breakdown' => {
                version => '0.19',
                file => 'lib/List/Breakdown.pm',
            },
        },
        resources => {
            homepage => 'https://sanctum.geek.nz/cgit/List-Breakdown.git/',
            repository => 'https://sanctum.geek.nz/code/List-Breakdown.git/',
        },
    },
    dist  => { COMPRESS => 'gzip -9f', SUFFIX => 'gz', },
    clean => { FILES => 'List-Breakdown-*' },
);