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