Initial brotli compressor bindings
[io-compress-brotli.git] / Makefile.PL
CommitLineData
f9995f31
MG
1use 5.014000;
2use ExtUtils::MakeMaker;
3
4WriteMakefile(
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 => {},
c683f09d
MG
13 BUILD_REQUIRES => {
14 qw/File::Slurp 0/,
15 },
fd0f6b13
QR
16 INC => '-Ibrotli',
17 MYEXTLIB => 'brotli/libbrotli$(LIB_EXT)',
63f2e6eb 18 clean => { FILES => 'brotli/libbrotli$(LIB_EXT)' },
f9995f31
MG
19 META_ADD => {
20 dynamic_config => 0,
21 resources => {
22 repository => 'https://git.ieval.ro/?p=io-compress-brotli.git',
23 },
24 }
25);
fd0f6b13
QR
26
27sub MY::postamble {
28'
29$(MYEXTLIB): brotli/Makefile
30 cd brotli && CFLAGS=-fPIC $(MAKE) lib
31'
32}
This page took 0.010113 seconds and 4 git commands to generate.