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