Initial commit
[tie-hash-sorted-xs.git] / Makefile.PL
1 use ExtUtils::MakeMaker;
2 use strict;
3 use warnings;
4
5 WriteMakefile(
6 NAME => 'Tie::Hash::Sorted::XS',
7 VERSION_FROM => 'lib/Tie/Hash/Sorted/XS.pm',
8 ABSTRACT_FROM => 'lib/Tie/Hash/Sorted/XS.pm',
9 AUTHOR => 'Marius Gavrilescu <marius@ieval.ro>',
10 MIN_PERL_VERSION => '5.14.0',
11 LICENSE => 'perl',
12 SIGN => 1,
13 PREREQ_PM => {
14 qw/Tree::SizeBalanced 0/,
15 },
16 META_ADD => {
17 dynamic_config => 0,
18 resources => {
19 repository => 'https://git.ieval.ro/?p=tie-hash-sorted-xs.git',
20 },
21 }
22 );
This page took 0.020688 seconds and 4 git commands to generate.