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