Initial commit
[convert-color-husl.git] / Makefile.PL
1 use 5.014000;
2 use ExtUtils::MakeMaker;
3
4 WriteMakefile(
5 NAME => 'Convert::Color::HUSL',
6 VERSION_FROM => 'lib/Convert/Color/HUSL.pm',
7 ABSTRACT_FROM => 'lib/Convert/Color/HUSL.pm',
8 AUTHOR => 'Marius Gavrilescu <marius@ieval.ro>',
9 MIN_PERL_VERSION => '5.14.0',
10 LICENSE => 'perl',
11 SIGN => 1,
12 PREREQ_PM => {
13 qw/Convert::Color 0/,
14 },
15 META_MERGE => {
16 dynamic_config => 0,
17 resources => {
18 repository => 'https://git.ieval.ro/?p=convert-color-husl.git',
19 }
20 }
21 );
This page took 0.022637 seconds and 4 git commands to generate.