]>
Commit | Line | Data |
---|---|---|
4e59696a MG |
1 | use 5.008009; |
2 | use strict; | |
1f72b051 MG |
3 | use ExtUtils::MakeMaker; |
4 | ||
5 | WriteMakefile( | |
6 | NAME => 'Convert::Color::HUSL', | |
7 | VERSION_FROM => 'lib/Convert/Color/HUSL.pm', | |
dd48d8a4 | 8 | ABSTRACT => 'Convert between RGB, CIEXYZ, CIELUV, CIELCh, HUSL, HUSLp color spaces', |
1f72b051 | 9 | AUTHOR => 'Marius Gavrilescu <marius@ieval.ro>', |
4e59696a | 10 | MIN_PERL_VERSION => '5.8.9', |
1f72b051 MG |
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 | ); |