Radix cross Linux Build System

Cross-platform build system is designed to build distributions of different operating systems for a set of target devices

74 Commits   2 Branches   2 Tags
Index: 1.16.5/Makefile
===================================================================
--- 1.16.5/Makefile	(nonexistent)
+++ 1.16.5/Makefile	(revision 5)
@@ -0,0 +1,43 @@
+
+COMPONENT_TARGETS = $(HARDWARE_BUILD)
+
+include ../../../../../build-system/constants.mk
+
+SOURCE_REQUIRES = build-system/3pp/sources/packages/automake
+
+
+# ======= __END_OF_REQUIRES__ =======
+
+version         = 1.16.5
+tar_xz_archive  = $(BUILDSYSTEM)/3pp/sources/packages/automake/automake-$(version).tar.xz
+src_dir         = automake-$(version)
+
+src_done        = $(TARGET_BUILD_DIR)/.source-done
+SRC_DIR         = $(TARGET_BUILD_DIR)/automake-$(version)
+SRC_ARCHIVE     = $(tar_xz_archive)
+
+PATCHES = PATCHES
+
+install_target  = $(TARGET_BUILD_DIR)/.installed
+
+BUILD_TARGETS   = $(install_target)
+
+
+include ../../../../../build-system/core.mk
+
+
+$(src_done): $(SRC_ARCHIVE) $(PATCHES_DEP)
+	$(UNPACK_SRC_ARCHIVE)
+	$(APPLY_PATCHES)
+	@touch $@
+
+$(install_target): $(src_done)
+	@echo -e "\n======= Installing Automake scripts =======\n"
+	@mkdir -p $(BUILDSYSTEM)/usr/share/automake-$(version)
+	@cd $(SRC_DIR)/lib ; \
+	  cp -a config.guess config.sub \
+	  $(BUILDSYSTEM)/usr/share/automake-$(version)
+	@mkdir -p $(BUILDSYSTEM)/sbin && \
+	  echo "CONFIG_GUESS       := $(BUILDSYSTEM)/usr/share/automake-$(version)/config.guess" >> $(BUILDSYSTEM)/sbin/.config && \
+	  echo "CONFIG_SUB         := $(BUILDSYSTEM)/usr/share/automake-$(version)/config.sub"   >> $(BUILDSYSTEM)/sbin/.config
+	@touch $@
Index: 1.16.5/PATCHES
===================================================================
Index: 1.16.5
===================================================================
--- 1.16.5	(nonexistent)
+++ 1.16.5	(revision 5)

Property changes on: 1.16.5
___________________________________________________________________
Added: svn:ignore
## -0,0 +1,51 ##
+
+# local config & object files
+build-config.mk
+sbin
+usr
+var
+
+# configure targets
+autom4te.cache
+.config
+config.log
+config.status
+configure
+
+# cpan configure targets
+.installed
+CPAN-Config.pm
+CPAN-install
+
+# Target build dirs
+.build-machine
+
+# Timestamps
+.makefile
+
+# src & hw requires
+.src_requires
+.src_requires_depend
+
+# Tarballs
+*.gz
+*.bz2
+*.lz
+*.xz
+*.tgz
+*.txz
+
+# Signatures
+*.asc
+*.sig
+*.sign
+*.sha1sum
+
+# Patches
+*.patch
+
+# Object Files
+*.[ao]
+
+# backup copies
+*~
Index: .
===================================================================
--- .	(nonexistent)
+++ .	(revision 5)

Property changes on: .
___________________________________________________________________
Added: svn:ignore
## -0,0 +1,51 ##
+
+# local config & object files
+build-config.mk
+sbin
+usr
+var
+
+# configure targets
+autom4te.cache
+.config
+config.log
+config.status
+configure
+
+# cpan configure targets
+.installed
+CPAN-Config.pm
+CPAN-install
+
+# Target build dirs
+.build-machine
+
+# Timestamps
+.makefile
+
+# src & hw requires
+.src_requires
+.src_requires_depend
+
+# Tarballs
+*.gz
+*.bz2
+*.lz
+*.xz
+*.tgz
+*.txz
+
+# Signatures
+*.asc
+*.sig
+*.sign
+*.sha1sum
+
+# Patches
+*.patch
+
+# Object Files
+*.[ao]
+
+# backup copies
+*~