Radix cross Linux 3pp sources

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

343 Commits   0 Branches   0 Tags
author: kx <kx@radix.pro> 2023-04-06 16:08:32 +0300 committer: kx <kx@radix.pro> 2023-04-06 16:08:32 +0300 commit: c9b87548f19c4323592abff0a86bc1dac45658f0 parent: 8d07317ed20e7544501edfcc9894d5002fd1771d
Commit Summary:
GNU packages
Diffstat:
1 file changed, 30 insertions, 0 deletions
diff --git a/GNU/libunistring/Makefile b/GNU/libunistring/Makefile
new file mode 100644
index 0000000..d137eef
--- /dev/null
+++ b/GNU/libunistring/Makefile
@@ -0,0 +1,39 @@
+#
+# Project Home:
+# ============
+# https://www.gnu.org/software/libunistring
+#
+# Downloads:
+# =========
+# https://ftp.gnu.org/gnu/libunistring
+#
+
+url         = https://ftp.gnu.org/gnu/libunistring
+
+versions    = 0.9.4 0.9.5 0.9.6 0.9.10
+versions   += 1.0 1.1
+
+pkgname     = libunistring
+suffix      = tar.xz
+
+tarballs    = $(addsuffix .$(suffix), $(addprefix $(pkgname)-, $(versions)))
+sha1s       = $(addsuffix .sha1sum, $(tarballs))
+
+all: $(tarballs) $(sha1s)
+
+.PHONY: downloads_clean
+
+$(tarballs):
+	@echo -e "\n======= Downloading source tarballs =======\n"
+	@for tarball in $(tarballs) ; do \
+	  wget -N $(url)/$$tarball ; \
+	done
+
+$(sha1s): %.$(suffix).sha1sum : %.$(suffix)
+	@for tarball in $< ; do \
+	  echo -e "\n======= Calculation the '$$tarball' sha1sum =======\n" ; \
+	  sha1sum --binary $$tarball > $$tarball.sha1sum ; \
+	done
+
+downloads_clean:
+	@rm -rf $(tarballs) $(sha1s)