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