Index: Makefile
===================================================================
--- Makefile (.../10.36) (revision 435)
+++ Makefile (.../10.45) (revision 436)
@@ -71,9 +71,9 @@
# ======= __END_OF_REQUIRES__ =======
-version = 10.36
-tar_bz2_archive = $(SRC_PACKAGE_PATH)/packages/l/pcre2/pcre2-$(version).tar.bz2
-SRC_ARCHIVE = $(tar_bz2_archive)
+version = 10.45
+tar_xz_archive = $(SRC_PACKAGE_PATH)/packages/l/pcre2/pcre2-$(version).tar.xz
+SRC_ARCHIVE = $(tar_xz_archive)
SRC_DIR = $(TARGET_BUILD_DIR)/pcre2-$(version)
src_dir_name = pcre2-$(version)
src_done = $(TARGET_BUILD_DIR)/.source_done
@@ -93,7 +93,7 @@
# *PKG_NAME & *PKG_VERSION shouldn't be a reference to value.
#
PCRE_PKG_NAME = pcre2
-PCRE_PKG_VERSION = 10.36
+PCRE_PKG_VERSION = 10.45
PCRE_PKG_ARCH = $(PKGARCH)
PCRE_PKG_DISTRO_NAME = $(DISTRO_NAME)
PCRE_PKG_DISTRO_VERSION = $(DISTRO_VERSION)
@@ -189,7 +189,7 @@
) \
fi
@mkdir -p $(PCRE_PKG)/usr/doc/$(src_dir_name)
- @cp -a $(SRC_DIR)/LICENCE $(SRC_DIR)/AUTHORS \
+ @cp -a $(SRC_DIR)/LICENCE.md $(SRC_DIR)/AUTHORS.md \
$(PCRE_PKG)/usr/doc/$(src_dir_name)
@rm -f $(PCRE_PKG)/usr/share/doc/$(src_dir_name)/ChangeLog
@( cd $(SRC_DIR) ; \
@@ -201,18 +201,18 @@
)
# ======= remove toolchain path from target libtool *.la files =======
@( cd $(PCRE_PKG)/usr/lib$(LIBSUFFIX) ; \
- sed -i "s,$(TARGET_DEST_DIR),,g" libpcre2-16.la libpcre2-32.la libpcre2-8.la libpcre2-posix.la \
+ sed -i "s,$(TARGET_DEST_DIR),,g" libpcre2-16.la libpcre2-32.la libpcre2-8.la libpcre2-posix.la ; \
)
# ======= Install the same to $(TARGET_DEST_DIR) =======
$(call install-into-devenv, $(PCRE_PKG))
# ======= tune libtool *.la search path to the target destination for development =======
@( cd $(TARGET_DEST_DIR)/usr/lib$(LIBSUFFIX) ; \
- sed -i "s,/usr,$(TARGET_DEST_DIR)/usr,g" libpcre2-16.la libpcre2-32.la libpcre2-8.la libpcre2-posix.la ; \
- sed -i "s,L/lib,L$(TARGET_DEST_DIR)/lib,g" libpcre2-16.la libpcre2-32.la libpcre2-8.la libpcre2-posix.la \
+ sed -i "s,/usr,$(TARGET_DEST_DIR)/usr,g" libpcre2-16.la libpcre2-32.la libpcre2-8.la libpcre2-posix.la ; \
+ sed -i "s,L/lib,L$(TARGET_DEST_DIR)/lib,g" libpcre2-16.la libpcre2-32.la libpcre2-8.la libpcre2-posix.la ; \
)
# ======= tune pkg-config *.pc search path to the target destination for development =======
@( cd $(TARGET_DEST_DIR)/usr/lib$(LIBSUFFIX)/pkgconfig ; \
- sed -i "s,/usr,$(TARGET_DEST_DIR)/usr,g" libpcre2-16.pc libpcre2-32.pc libpcre2-8.pc libpcre2-posix.pc \
+ sed -i "s,/usr,$(TARGET_DEST_DIR)/usr,g" libpcre2-16.pc libpcre2-32.pc libpcre2-8.pc libpcre2-posix.pc ; \
)
# ======= Strip binaries =======
@( cd $(PCRE_PKG) ; \