Replace File::Slurp with File::Slurper
[io-compress-brotli.git] / Makefile.PL
index bfbb161b524714e20a7d003f4b37f3ebf76a2456..0c59c05342530133d64aa70694478280eddf69b7 100644 (file)
@@ -4,19 +4,19 @@ use ExtUtils::MakeMaker;
 WriteMakefile(
        NAME             => 'IO::Compress::Brotli',
        VERSION_FROM     => 'lib/IO/Compress/Brotli.pm',
-       ABSTRACT         => 'Read Brotli buffers/streams',
+       ABSTRACT         => 'Read/write Brotli buffers/streams',
        AUTHOR           => 'Marius Gavrilescu <marius@ieval.ro>',
        MIN_PERL_VERSION => '5.14.0',
        LICENSE          => 'perl',
        SIGN             => 1,
        EXE_FILES        => [ 'bin/bro-perl' ],
        PREREQ_PM        => {
-               'File::Slurp'  => '9999.19',
-               'Getopt::Long' => '2.45',
-               'Time:HiRes'   => '1.9728'
+               'File::Slurper' => '0',
+               'Getopt::Long'  => '0',
+               'Time::HiRes'   => '0',
        },
        BUILD_REQUIRES   => {},
-       INC              => '-Ibrotli',
+       INC              => '-Ibrotli/c/include',
        MYEXTLIB         => 'brotli/libbrotli$(LIB_EXT)',
        clean            => { FILES => 'brotli/libbrotli$(LIB_EXT)' },
        META_ADD         => {
@@ -30,6 +30,6 @@ WriteMakefile(
 sub MY::postamble {
 '
 $(MYEXTLIB): brotli/Makefile
-       cd brotli && CFLAGS=-fPIC $(MAKE) lib
+       cd brotli && CFLAGS=-fPIC `which gmake || echo $(MAKE)` lib
 '
 }
This page took 0.00987 seconds and 4 git commands to generate.