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