kiss-stj

My KISS Linux repo for software I use on my computers.
git clone https://git.stjo.hn/kiss-stj
Log | Files | Refs | README | LICENSE

commit 47fd080c3658c6a9c457c86013b60d7ff460d594
parent 3b64709bcfd1423449b8460370a0d8cf391719d3
Author: St John Karp <contact@stjo.hn>
Date:   Wed,  7 Jun 2023 04:09:56 -0400

pcre: Add package at version 8.45

Diffstat:
Aextra/pcre/README | 42++++++++++++++++++++++++++++++++++++++++++
Aextra/pcre/build | 12++++++++++++
Aextra/pcre/checksums | 1+
Aextra/pcre/sources | 1+
Aextra/pcre/version | 1+
5 files changed, 57 insertions(+), 0 deletions(-)

diff --git a/extra/pcre/README b/extra/pcre/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/pcre/build b/extra/pcre/build @@ -0,0 +1,12 @@ +#!/bin/sh -e + +./configure \ + --prefix=/usr \ + --enable-pcre-16 \ + --enable-pcre-32 \ + --enable-pcregrep-libz \ + --enable-pcregrep-libbz2 \ + --enable-jit + +make +make install diff --git a/extra/pcre/checksums b/extra/pcre/checksums @@ -0,0 +1 @@ +889eebf7746a09ed2d37a179a8bd531591032320327b4116a9213892c3a60e0592 diff --git a/extra/pcre/sources b/extra/pcre/sources @@ -0,0 +1 @@ +https://downloads.sourceforge.net/project/pcre/pcre/8.45/pcre-8.45.tar.bz2 diff --git a/extra/pcre/version b/extra/pcre/version @@ -0,0 +1 @@ +8.45 1