aboutsummaryrefslogblamecommitdiff
path: root/Makefile.PL
blob: cac8e48dc80bf2973a7b810f4178af7d05309afc (plain) (tree)



















                                                           

                           
      



                                        
                                  











                                                                             


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

WriteMakefile(
    NAME             => 'Music::Lyrics::LRC',
    AUTHOR           => q{Tom Ryder <tom@sanctum.geek.nz>},
    VERSION_FROM     => 'lib/Music/Lyrics/LRC.pm',
    ABSTRACT_FROM    => 'lib/Music/Lyrics/LRC.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,
        'English'     => 0,
    },
    META_MERGE => {
        'meta-spec' => { version => 2 },
        provides => {
            'Music::Lyrics::LRC' => {
                version => '0.10',
                file => 'lib/Music/Lyrics/LRC.pm',
            },
        },
        resources => {
            homepage => 'https://sanctum.geek.nz/cgit/Music-Lyrics-LRC.git/',
            repository => {
                type => 'git',
                url => 'https://sanctum.geek.nz/code/Music-Lyrics-LRC.git/',
                web => 'https://sanctum.geek.nz/cgit/Music-Lyrics-LRC.git/',
            },
        },
    },
    dist  => { COMPRESS => 'gzip -9f', SUFFIX => 'gz', },
    clean => { FILES => 'Music-Lyrics-LRC-*' },
);