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