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
   148         kx 
   148         kx COMPONENT_TARGETS = $(HARDWARE_NOARCH)
   148         kx 
   148         kx 
   148         kx include ../../../../build-system/constants.mk
   148         kx 
   148         kx 
   148         kx url         = $(DOWNLOAD_SERVER)/sources/packages/a/i2c-tools
   148         kx 
   148         kx versions    = 4.3
   148         kx pkgname     = i2c-tools
   148         kx suffix      = tar.xz
   148         kx 
   148         kx tarballs    = $(addsuffix .$(suffix), $(addprefix $(pkgname)-, $(versions)))
   148         kx sha1s       = $(addsuffix .sha1sum, $(tarballs))
   148         kx 
   148         kx 
   148         kx BUILD_TARGETS = $(tarballs) $(sha1s)
   148         kx 
   148         kx 
   148         kx include ../../../../build-system/core.mk
   148         kx 
   148         kx 
   148         kx .PHONY: download_clean
   148         kx 
   148         kx 
   148         kx $(tarballs):
   148         kx 	@echo -e "\n======= Downloading source tarballs =======" ; \
   148         kx 	 for tarball in $(tarballs) ; do \
   148         kx 	   echo "$(url)/$$tarball" | xargs -n 1 -P 100 wget $(WGET_OPTIONS) - & \
   148         kx 	 done ; wait
   148         kx 
   148         kx $(sha1s): $(tarballs)
   148         kx 	@for sha in $@ ; do \
   148         kx 	   echo -e "\n======= Downloading '$$sha' signature =======\n" ; \
   148         kx 	   echo "$(url)/$$sha" | xargs -n 1 -P 100 wget $(WGET_OPTIONS) - & wait %1 ; \
   148         kx 	   touch $$sha ; \
   148         kx 	   echo -e "\n======= Check the '$$sha' sha1sum =======\n" ; \
   148         kx 	   sha1sum --check $$sha ; ret="$$?" ; \
   148         kx 	   if [ "$$ret" == "1" ]; then \
   148         kx 	     echo -e "\n======= ERROR: Bad '$$sha' sha1sum =======\n" ; \
   148         kx 	     exit 1 ; \
   148         kx 	   fi ; \
   148         kx 	 done
   148         kx 
   148         kx download_clean:
   148         kx 	@rm -f $(tarballs) $(sha1s)