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