The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.

NAME

Alien::PCRE2 - Find or download/build/install libpcre2 in PCRE2, the new Perl Compatible Regular Expression engine

SYNOPSIS

From a Perl script

 use Alien::PCRE2;
 use Env qw(@PATH);
 unshift @PATH, Alien::PCRE2->bin_dir();
 system 'pcre2-config';
 system 'pcre2grep';

DESCRIPTION

This package can be used by other CPAN modules that require PCRE2 or libpcre2.

PLEASE NOTE: This distribution will automatically call make install as part of the make test step!

This is necessary to avoid the following error when testing the pcre2grep command:

error while loading shared libraries: libpcre2-8.so.0: cannot open shared object file: No such file or directory.

AUTHOR

William N. Braswell, Jr. <wbraswell@cpan.org>

COPYRIGHT AND LICENSE

This software is copyright (c) 2017 by William N. Braswell, Jr.;

This is free software; you can redistribute it and/or modify it under the same terms as the Perl 5 programming language system itself.