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