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