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