From e008fa8e533a02489aa72168c5475f249a4073b6 Mon Sep 17 00:00:00 2001 From: illiliti Date: Sun, 13 Mar 2022 15:10:53 +0300 Subject: [PATCH] pcre2: new package at 10.39 --- extra/pcre2/README | 42 ++++++++++++++++++++++++++++++++++++++++++ extra/pcre2/build | 12 ++++++++++++ extra/pcre2/checksums | 1 + extra/pcre2/sources | 1 + extra/pcre2/version | 1 + 5 files changed, 57 insertions(+) create mode 100644 extra/pcre2/README create mode 100755 extra/pcre2/build create mode 100644 extra/pcre2/checksums create mode 100644 extra/pcre2/sources create mode 100644 extra/pcre2/version diff --git a/extra/pcre2/README b/extra/pcre2/README new file mode 100644 index 00000000..7388a19d --- /dev/null +++ b/extra/pcre2/README @@ -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 + diff --git a/extra/pcre2/build b/extra/pcre2/build new file mode 100755 index 00000000..f086ea76 --- /dev/null +++ b/extra/pcre2/build @@ -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 diff --git a/extra/pcre2/checksums b/extra/pcre2/checksums new file mode 100644 index 00000000..47e5d82c --- /dev/null +++ b/extra/pcre2/checksums @@ -0,0 +1 @@ +0f03caf57f81d9ff362ac28cd389c055ec2bf0678d277349a1a4bee00ad6d440 diff --git a/extra/pcre2/sources b/extra/pcre2/sources new file mode 100644 index 00000000..1e02d442 --- /dev/null +++ b/extra/pcre2/sources @@ -0,0 +1 @@ +https://github.com/PhilipHazel/pcre2/releases/download/pcre2-VERSION/pcre2-VERSION.tar.bz2 diff --git a/extra/pcre2/version b/extra/pcre2/version new file mode 100644 index 00000000..356404f7 --- /dev/null +++ b/extra/pcre2/version @@ -0,0 +1 @@ +10.39 1