Radix cross Linux 3pp sources

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

343 Commits   0 Branches   0 Tags
c9b87548 (kx 2023-04-06 16:08:32 +0300  1) #
c9b87548 (kx 2023-04-06 16:08:32 +0300  2) # Project Home:
c9b87548 (kx 2023-04-06 16:08:32 +0300  3) # ============
c9b87548 (kx 2023-04-06 16:08:32 +0300  4) # https://www.gnu.org/software/libidn
c9b87548 (kx 2023-04-06 16:08:32 +0300  5) #
c9b87548 (kx 2023-04-06 16:08:32 +0300  6) # Downloads:
c9b87548 (kx 2023-04-06 16:08:32 +0300  7) # =========
c9b87548 (kx 2023-04-06 16:08:32 +0300  8) # https://ftp.gnu.org/gnu/libidn
c9b87548 (kx 2023-04-06 16:08:32 +0300  9) #
c9b87548 (kx 2023-04-06 16:08:32 +0300 10) 
c9b87548 (kx 2023-04-06 16:08:32 +0300 11) url         = https://ftp.gnu.org/gnu/libidn
c9b87548 (kx 2023-04-06 16:08:32 +0300 12) 
c9b87548 (kx 2023-04-06 16:08:32 +0300 13) lib_name    = libidn
c9b87548 (kx 2023-04-06 16:08:32 +0300 14) 
5b44ea13 (kx 2024-02-24 14:03:10 +0300 15) versions    = 1.25 1.27 1.28 1.35 1.36 1.38 1.41 1.42
c9b87548 (kx 2023-04-06 16:08:32 +0300 16) 
c9b87548 (kx 2023-04-06 16:08:32 +0300 17) pkgname     = libidn
c9b87548 (kx 2023-04-06 16:08:32 +0300 18) suffix      = tar.gz
c9b87548 (kx 2023-04-06 16:08:32 +0300 19) 
c9b87548 (kx 2023-04-06 16:08:32 +0300 20) tarballs    = $(addsuffix .$(suffix), $(addprefix $(pkgname)-, $(versions)))
c9b87548 (kx 2023-04-06 16:08:32 +0300 21) sha1s       = $(addsuffix .sha1sum, $(tarballs))
c9b87548 (kx 2023-04-06 16:08:32 +0300 22) 
c9b87548 (kx 2023-04-06 16:08:32 +0300 23) 
c9b87548 (kx 2023-04-06 16:08:32 +0300 24) all: $(tarballs) $(signatures) $(sha1s)
c9b87548 (kx 2023-04-06 16:08:32 +0300 25) 
c9b87548 (kx 2023-04-06 16:08:32 +0300 26) .PHONY: downloads_clean
c9b87548 (kx 2023-04-06 16:08:32 +0300 27) 
c9b87548 (kx 2023-04-06 16:08:32 +0300 28) $(tarballs):
c9b87548 (kx 2023-04-06 16:08:32 +0300 29) 	@echo -e "\n======= Downloading source tarballs =======\n"
c9b87548 (kx 2023-04-06 16:08:32 +0300 30) 	@for tarball in $(tarballs) ; do \
c9b87548 (kx 2023-04-06 16:08:32 +0300 31) 	  wget -N $(url)/$$tarball ; \
c9b87548 (kx 2023-04-06 16:08:32 +0300 32) 	done
c9b87548 (kx 2023-04-06 16:08:32 +0300 33) 
c9b87548 (kx 2023-04-06 16:08:32 +0300 34) $(sha1s): %.$(suffix).sha1sum : %.$(suffix)
c9b87548 (kx 2023-04-06 16:08:32 +0300 35) 	@for tarball in $< ; do \
c9b87548 (kx 2023-04-06 16:08:32 +0300 36) 	  echo -e "\n======= Calculation the '$$tarball' sha1sum =======\n" ; \
c9b87548 (kx 2023-04-06 16:08:32 +0300 37) 	  sha1sum --binary $$tarball > $$tarball.sha1sum ; \
c9b87548 (kx 2023-04-06 16:08:32 +0300 38) 	done
c9b87548 (kx 2023-04-06 16:08:32 +0300 39) 
c9b87548 (kx 2023-04-06 16:08:32 +0300 40) downloads_clean:
c9b87548 (kx 2023-04-06 16:08:32 +0300 41) 	@rm -rf $(tarballs) $(sha1s)