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