pcre2: new package at 10.39

This commit is contained in:
illiliti 2022-03-13 15:10:53 +03:00 committed by Owen Rafferty
parent afa48a5625
commit e008fa8e53
No known key found for this signature in database
GPG Key ID: A68B10E2554DEBCB
5 changed files with 57 additions and 0 deletions

42
extra/pcre2/README Normal file
View File

@ -0,0 +1,42 @@
pcre2
________________________________________________________________________________
Perl Compatible Regular Expressions (PCRE) is a library written in C, which
implements a regular expression engine, inspired by the capabilities of the
Perl programming language. Philip Hazel started writing PCRE in summer 1997.
PCRE's syntax is much more powerful and flexible than either of the POSIX
regular expression flavors (BRE, ERE) and than that of many other
regular-expression libraries. [0]
Upstream: https://www.pcre.org/
[000] Index
________________________________________________________________________________
* Installation ........................................................... [001]
* Usage .................................................................. [002]
* References ............................................................. [003]
[001] Installation
________________________________________________________________________________
+------------------------------------------------------------------------------+
| |
| $ kiss b pcre2 |
| |
+------------------------------------------------------------------------------+
[002] Usage
________________________________________________________________________________
Refer to the manual pages and command help output.
[003] References
________________________________________________________________________________
[0] https://en.wikipedia.org/wiki/Perl_Compatible_Regular_Expressions

12
extra/pcre2/build Executable file
View File

@ -0,0 +1,12 @@
#!/bin/sh -e
./configure \
--prefix=/usr \
--enable-pcre2-16 \
--enable-pcre2-32 \
--enable-pcre2grep-libz \
--enable-pcre2grep-libbz2 \
--enable-jit
make
make DESTDIR="$1" install

1
extra/pcre2/checksums Normal file
View File

@ -0,0 +1 @@
0f03caf57f81d9ff362ac28cd389c055ec2bf0678d277349a1a4bee00ad6d440

1
extra/pcre2/sources Normal file
View File

@ -0,0 +1 @@
https://github.com/PhilipHazel/pcre2/releases/download/pcre2-VERSION/pcre2-VERSION.tar.bz2

1
extra/pcre2/version Normal file
View File

@ -0,0 +1 @@
10.39 1