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