TITLE:=RE2 is a fast, safe, thread-friendly alternative to backtracking regular expression engines like those used in PCRE, Perl, and Python. It is a C++ library.
URL:=https://github.com/google/re2
MAINTAINER:=Amol Bhave <ambhave@fb.com>
endef
definePackage/re2/config
choice
prompt "Compile RE2 library."
default RE2_SHARED
help
Choose which version to compile.
-> Shared:
- Only Shared lib will be compiled.
-> Static:
- Only Static lib will be compiled.
config RE2_SHARED
bool "Shared"
config RE2_STATIC
bool "Static"
endchoice
endef
definePackage/re2/description
RE2 is a fast, safe, thread-friendly alternative to backtracking regular
expression engines like those used in PCRE, Perl, and Python.