Radix cross Linux

The main Radix cross Linux repository contains the build scripts of packages, which have the most complete and common functionality for desktop machines

452 Commits   2 Branches   1 Tag
Index: Makefile
===================================================================
--- Makefile	(.../10.36-ppc32)	(revision 435)
+++ Makefile	(.../10.45-ppc32)	(revision 436)
@@ -15,7 +15,7 @@
 
 SOURCE_REQUIRES    = sources/packages/l/pcre2
 
-REQUIRES           = libs/pcre2/10.36
+REQUIRES           = libs/pcre2/10.45
 REQUIRES          += app/bzip2/1.0.8-ppc32
 REQUIRES          += libs/readline/8.2-ppc32
 
@@ -22,9 +22,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
@@ -43,7 +43,7 @@
 # *PKG_NAME & *PKG_VERSION shouldn't be a reference to value.
 #
 PCRE_32_PKG_NAME                = pcre2-x32
-PCRE_32_PKG_VERSION             = 10.36
+PCRE_32_PKG_VERSION             = 10.45
 PCRE_32_PKG_ARCH                = $(PKGARCH)
 PCRE_32_PKG_DISTRO_NAME         = $(DISTRO_NAME)
 PCRE_32_PKG_DISTRO_VERSION      = $(DISTRO_VERSION)
@@ -131,18 +131,18 @@
 	@rm -rf $(PCRE_32_PKG)/usr/share
 	# ======= remove toolchain path from target libtool *.la files =======
 	@( cd $(PCRE_32_PKG)/usr/lib$(MULTILIB_PPC32_SUFFIX) ; \
-	   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_32_PKG))
 	# ======= tune libtool *.la search path to the target destination for development =======
 	@( cd $(TARGET_DEST_DIR)/usr/lib$(MULTILIB_PPC32_SUFFIX) ; \
-	   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$(MULTILIB_PPC32_SUFFIX)/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_32_PKG) ; \