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