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	(nonexistent)
+++ Makefile	(revision 192)
@@ -0,0 +1,47 @@
+
+COMPONENT_TARGETS = $(HARDWARE_NOARCH)
+
+
+include ../../../../build-system/constants.mk
+
+
+url         = $(DOWNLOAD_SERVER)/sources/packages/x/fontconfig
+
+versions    = 119.0.6026.1
+pkgname     = chromium
+
+patches     = $(CURDIR)/patches/chromium-119.0.6026.1-cross-compile.patch
+patches    += $(CURDIR)/patches/chromium-119.0.6026.1-dangling-gsl.patch
+patches    += $(CURDIR)/patches/chromium-119.0.6026.1-host-pkg-config.patch
+patches    += $(CURDIR)/patches/chromium-119.0.6026.1-inc-drop-host-crash.patch
+patches    += $(CURDIR)/patches/chromium-119.0.6026.1-oauth2-default.patch
+patches    += $(CURDIR)/patches/chromium-119.0.6026.1-target-aarch64.patch
+patches    += $(CURDIR)/patches/chromium-119.0.6026.1-target-arm.patch
+patches    += $(CURDIR)/patches/chromium-119.0.6026.1-target-x86_64.patch
+
+.NOTPARALLEL: $(patches)
+
+
+BUILD_TARGETS = $(patches)
+
+
+include ../../../../build-system/core.mk
+
+
+.PHONY: download_clean
+
+
+$(patches):
+	@echo -e "\n======= Create Patches =======\n" ; \
+	 ( cd create-119.0.6026.1-cross-compile-patch       ; ./create.patch.sh ) ; \
+	 ( cd create-119.0.6026.1-dangling-gsl-patch        ; ./create.patch.sh ) ; \
+	 ( cd create-119.0.6026.1-host-pkg-config-patch     ; ./create.patch.sh ) ; \
+	 ( cd create-119.0.6026.1-inc-drop-host-crash-patch ; ./create.patch.sh ) ; \
+	 ( cd create-119.0.6026.1-oauth2-default-patch      ; ./create.patch.sh ) ; \
+	 ( cd create-119.0.6026.1-target-aarch64-patch      ; ./create.patch.sh ) ; \
+	 ( cd create-119.0.6026.1-target-arm-patch          ; ./create.patch.sh ) ; \
+	 ( cd create-119.0.6026.1-target-x86_64-patch       ; ./create.patch.sh ) ; \
+	 echo -e "\n"
+
+download_clean:
+	@rm -f $(patches)