Bump version and update Changes
[convert-color-husl.git] / Makefile.PL
1 use 5.008009;
2 use strict;
3 use ExtUtils::MakeMaker;
4
5 WriteMakefile(
6 NAME => 'Convert::Color::HUSL',
7 VERSION_FROM => 'lib/Convert/Color/HUSL.pm',
8 ABSTRACT => 'Convert between RGB, CIEXYZ, CIELUV, CIELCh, HUSL, HUSLp color spaces',
9 AUTHOR => 'Marius Gavrilescu <marius@ieval.ro>',
10 MIN_PERL_VERSION => '5.8.9',
11 LICENSE => 'perl',
12 SIGN => 1,
13 PREREQ_PM => {
14 qw/Convert::Color 0/,
15 },
16 META_MERGE => {
17 dynamic_config => 0,
18 resources => {
19 repository => 'https://git.ieval.ro/?p=convert-color-husl.git',
20 }
21 }
22 );
This page took 0.02095 seconds and 4 git commands to generate.