From 42dcaa8a13ea50ef40cb64fd13292acd70de478e Mon Sep 17 00:00:00 2001 From: Peter Marquardt Date: Fri, 5 Nov 2021 13:03:26 +0100 Subject: [PATCH] pcre2: more configure options LFS dictates: `--enable-unicode`: This switch enables Unicode support and includes the functions for handling UTF-8/16/32 character strings in the library. `--enable-pcre2-16`: This switch enables 16 bit character support. `--enable-pcre2-32`: This switch enables 32 bit character support. `--enable-pcre2grep-libz`: This switch adds support for reading .gz compressed files to pcre2grep. `--enable-pcre2grep-libbz2`: This switch adds support for reading .bz2 compressed files to pcre2grep. `--enable-pcre2test-libreadline`: This switch adds line editing and history features to the pcre2test program. `--enable-jit`: this option enables Just-in-time compiling, which can greatly speed up pattern matching. --- pcre2.be0 | 15 ++++++++++----- 1 file changed, 10 insertions(+), 5 deletions(-) diff --git a/pcre2.be0 b/pcre2.be0 index 31fc5ce0e..3a42efda5 100755 --- a/pcre2.be0 +++ b/pcre2.be0 @@ -1,6 +1,6 @@ #!/usr/bin/env beesh -# BEE_VERSION pcre2-10.37-0 +# BEE_VERSION pcre2-10.37-1 #SRCURL[0]="https://downloads.sourceforge.net/pcre/pcre2-${PKGVERSION}.tar.bz2" SRCURL[0]="https://beehive.molgen.mpg.de/85dc7f2233491b4b6ec6115220da99c6/pcre2-10.37.tar.bz2" @@ -23,6 +23,13 @@ BEE_BUILDTYPE=autotools mee_configure() { bee_configure \ + --enable-unicode \ + --enable-jit \ + --enable-pcre2-16 \ + --enable-pcre2-32 \ + --enable-pcre2grep-libz \ + --enable-pcre2grep-libbz2 \ + --enable-pcre2test-libreadline \ --disable-static } @@ -30,9 +37,7 @@ mee_configure() { # bee_build #} -#mee_install() { -# bee_install -#} -mee_install_post() { +mee_install() { + bee_install cd ${D} && rm -r usr/share/doc }