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