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