Radix cross Linux 3pp sources

RcL sources – is a tree of Third Party and Radix source tarballs

423 Commits   0 Branches   0 Tags
051bf53b (kx 2023-05-18 05:58:41 +0300  1) #
051bf53b (kx 2023-05-18 05:58:41 +0300  2) # Project Home:
051bf53b (kx 2023-05-18 05:58:41 +0300  3) # ============
051bf53b (kx 2023-05-18 05:58:41 +0300  4) # https://freedesktop.org/software/pulseaudio/webrtc-audio-processing
051bf53b (kx 2023-05-18 05:58:41 +0300  5) #
051bf53b (kx 2023-05-18 05:58:41 +0300  6) # Downloads:
051bf53b (kx 2023-05-18 05:58:41 +0300  7) # =========
051bf53b (kx 2023-05-18 05:58:41 +0300  8) # https://freedesktop.org/software/pulseaudio/webrtc-audio-processing/webrtc-audio-processing-0.3.1.tar.xz
051bf53b (kx 2023-05-18 05:58:41 +0300  9) #
051bf53b (kx 2023-05-18 05:58:41 +0300 10) 
051bf53b (kx 2023-05-18 05:58:41 +0300 11) url         = https://freedesktop.org/software/pulseaudio/webrtc-audio-processing
051bf53b (kx 2023-05-18 05:58:41 +0300 12) 
051bf53b (kx 2023-05-18 05:58:41 +0300 13) versions    = 0.3.1
051bf53b (kx 2023-05-18 05:58:41 +0300 14) 
051bf53b (kx 2023-05-18 05:58:41 +0300 15) pkgname     = webrtc-audio-processing
051bf53b (kx 2023-05-18 05:58:41 +0300 16) suffix      = tar.xz
051bf53b (kx 2023-05-18 05:58:41 +0300 17) 
051bf53b (kx 2023-05-18 05:58:41 +0300 18) tarballs    = $(addsuffix .$(suffix), $(addprefix $(pkgname)-, $(versions)))
051bf53b (kx 2023-05-18 05:58:41 +0300 19) sha1s       = $(addsuffix .sha1sum, $(tarballs))
051bf53b (kx 2023-05-18 05:58:41 +0300 20) 
051bf53b (kx 2023-05-18 05:58:41 +0300 21) 
051bf53b (kx 2023-05-18 05:58:41 +0300 22) all: $(tarballs) $(sha1s)
051bf53b (kx 2023-05-18 05:58:41 +0300 23) 
051bf53b (kx 2023-05-18 05:58:41 +0300 24) .PHONY: downloads_clean
051bf53b (kx 2023-05-18 05:58:41 +0300 25) 
051bf53b (kx 2023-05-18 05:58:41 +0300 26) $(tarballs):
051bf53b (kx 2023-05-18 05:58:41 +0300 27) 	@echo -e "\n======= Downloading source tarballs =======\n"
051bf53b (kx 2023-05-18 05:58:41 +0300 28) 	@for tarball in $(tarballs) ; do \
051bf53b (kx 2023-05-18 05:58:41 +0300 29) 	  wget -N $(url)/$$tarball ; \
051bf53b (kx 2023-05-18 05:58:41 +0300 30) 	done
051bf53b (kx 2023-05-18 05:58:41 +0300 31) 
051bf53b (kx 2023-05-18 05:58:41 +0300 32) $(sha1s): %.$(suffix).sha1sum : %.$(suffix)
051bf53b (kx 2023-05-18 05:58:41 +0300 33) 	@for tarball in $< ; do \
051bf53b (kx 2023-05-18 05:58:41 +0300 34) 	  echo -e "\n======= Calculation the '$$tarball' sha1sum =======\n" ; \
051bf53b (kx 2023-05-18 05:58:41 +0300 35) 	  sha1sum --binary $$tarball > $$tarball.sha1sum ; \
051bf53b (kx 2023-05-18 05:58:41 +0300 36) 	done
051bf53b (kx 2023-05-18 05:58:41 +0300 37) 
051bf53b (kx 2023-05-18 05:58:41 +0300 38) downloads_clean:
051bf53b (kx 2023-05-18 05:58:41 +0300 39) 	@rm -rf $(tarballs) $(sha1s)