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