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