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