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