libpcre: update to 8.45

This commit is contained in:
Juergen Daubert 2021-06-17 17:27:47 +02:00
parent 2995f2c395
commit 8b626848f5
3 changed files with 23 additions and 22 deletions

View File

@ -1,6 +1,6 @@
drwxr-xr-x root/root lib/
lrwxrwxrwx root/root lib/libpcre.so.1 -> libpcre.so.1.2.12
-rwxr-xr-x root/root lib/libpcre.so.1.2.12
lrwxrwxrwx root/root lib/libpcre.so.1 -> libpcre.so.1.2.13
-rwxr-xr-x root/root lib/libpcre.so.1.2.13
drwxr-xr-x root/root usr/
drwxr-xr-x root/root usr/bin/
-rwxr-xr-x root/root usr/bin/pcre-config
@ -16,7 +16,7 @@ drwxr-xr-x root/root usr/include/
drwxr-xr-x root/root usr/lib/
-rw-r--r-- root/root usr/lib/libpcre.a
-rwxr-xr-x root/root usr/lib/libpcre.la
lrwxrwxrwx root/root usr/lib/libpcre.so -> ../../lib/libpcre.so.1.2.12
lrwxrwxrwx root/root usr/lib/libpcre.so -> ../../lib/libpcre.so.1.2.13
-rw-r--r-- root/root usr/lib/libpcrecpp.a
-rwxr-xr-x root/root usr/lib/libpcrecpp.la
lrwxrwxrwx root/root usr/lib/libpcrecpp.so -> libpcrecpp.so.0.0.2

View File

@ -1,5 +1,5 @@
untrusted comment: verify with /etc/ports/core.pub
RWRJc1FUaeVeqhJ3sIrJpkwRkyJ+/jYLdndb2JvsaOvdE7H1s9L2DZjgFZ0CXsu1JcQZ5kV3a6+6X1XqpxDuyDJJiErIQFvVkAU=
SHA256 (Pkgfile) = a3b47c73deac4e3a81aec3e7ed7bec0dbc57e10e5b6cff08ac387b25c89ef5b5
SHA256 (.footprint) = 81d7f4e9569de704e434b32656f0f6c4cb9e24b1b2ac9a359fe6926b38fc8d4b
SHA256 (pcre-8.44.tar.bz2) = 19108658b23b3ec5058edc9f66ac545ea19f9537234be1ec62b714c84399366d
RWRJc1FUaeVeqscjXXM3cbaxGV4Fxmx0V2zTttC8lDd/XXIw4r0V13FOPCL2L8JhWhmp9+Vn8qHtGDVudKFLxM5QgFdw4e2z6Qw=
SHA256 (Pkgfile) = 544730e3fb83a201831bb1736fb84f2a69b08252ffc8cd09f70eb2c17ce5a8ce
SHA256 (.footprint) = 28e8a00abec62cffb73fa983d89ca1d9b340966b287d3cbf5623902cbb6e9cb7
SHA256 (pcre-8.45.tar.bz2) = 4dae6fdcd2bb0bb6c37b5f97c33c2be954da743985369cddac3546e3218bffb8

View File

@ -1,26 +1,27 @@
# Description: Perl Compatible Regular Expressions
# URL: http://www.pcre.org
# Maintainer: CRUX System Team, core-ports at crux dot nu
# URL: http://www.pcre.org
# Maintainer: CRUX System Team, core-ports at crux dot nu
name=libpcre
version=8.44
version=8.45
release=1
source=(https://ftp.pcre.org/pub/pcre/pcre-$version.tar.bz2)
build() {
cd pcre-$version
cd pcre-$version
./configure --prefix=/usr \
--enable-utf8 \
--enable-unicode-properties \
--enable-jit
make
make DESTDIR=$PKG install
./configure \
--prefix=/usr \
--enable-utf8 \
--enable-unicode-properties \
--enable-jit
make
make DESTDIR=$PKG install
install -d $PKG/lib
mv $PKG/usr/lib/libpcre.so.* $PKG/lib
ln -sf ../../lib/$(readlink $PKG/usr/lib/libpcre.so) $PKG/usr/lib/libpcre.so
install -d $PKG/lib
mv $PKG/usr/lib/libpcre.so.* $PKG/lib
ln -sf ../../lib/$(readlink $PKG/usr/lib/libpcre.so) $PKG/usr/lib/libpcre.so
rm -r $PKG/usr/share/doc
rm $PKG/usr/share/man/man3/{pcre{16,32}*,pcre_utf{16,32}*}
rm -r $PKG/usr/share/doc
rm $PKG/usr/share/man/man3/{pcre{16,32}*,pcre_utf{16,32}*}
}