Initial commit
[io-compress-brotli.git] / Makefile.PL
1 use 5.014000;
2 use ExtUtils::MakeMaker;
3
4 WriteMakefile(
5 NAME => 'IO::Compress::Brotli',
6 VERSION_FROM => 'lib/IO/Compress/Brotli.pm',
7 ABSTRACT => 'Read Brotli buffers/streams',
8 AUTHOR => 'Marius Gavrilescu <marius@ieval.ro>',
9 MIN_PERL_VERSION => '5.14.0',
10 LICENSE => 'perl',
11 SIGN => 1,
12 PREREQ_PM => {},
13 INC => '-I.',
14 OBJECT => 'Brotli.o bit_reader.o decode.o dictionary.o huffman.o state.o streams.o',
15 C => [<dec/*c>],
16 depend => {'$(INST_DYNAMIC)' => '$(O_FILES)'},
17 META_ADD => {
18 dynamic_config => 0,
19 resources => {
20 repository => 'https://git.ieval.ro/?p=io-compress-brotli.git',
21 },
22 }
23 );
This page took 0.021392 seconds and 4 git commands to generate.