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