MANIFEST.SKIP
[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',
7e5e9e1b 7 ABSTRACT => 'Read/write Brotli buffers/streams',
f9995f31
MG
8 AUTHOR => 'Marius Gavrilescu <marius@ieval.ro>',
9 MIN_PERL_VERSION => '5.14.0',
10 LICENSE => 'perl',
11 SIGN => 1,
2786a68d
QR
12 EXE_FILES => [ 'bin/bro-perl' ],
13 PREREQ_PM => {
acade63e
MG
14 'File::Slurp' => '0',
15 'Getopt::Long' => '0',
b8c85814 16 'Time::HiRes' => '0',
c683f09d 17 },
2786a68d 18 BUILD_REQUIRES => {},
c610433e 19 INC => '-Ibrotli/c/include',
fd0f6b13 20 MYEXTLIB => 'brotli/libbrotli$(LIB_EXT)',
63f2e6eb 21 clean => { FILES => 'brotli/libbrotli$(LIB_EXT)' },
f9995f31
MG
22 META_ADD => {
23 dynamic_config => 0,
24 resources => {
25 repository => 'https://git.ieval.ro/?p=io-compress-brotli.git',
26 },
27 }
28);
fd0f6b13
QR
29
30sub MY::postamble {
31'
32$(MYEXTLIB): brotli/Makefile
20f92ee2 33 cd brotli && CFLAGS=-fPIC `which gmake || echo $(MAKE)` lib
fd0f6b13
QR
34'
35}
This page took 0.011882 seconds and 4 git commands to generate.