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