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-05-18 03:11:50 +0300 committer: kx <kx@radix.pro> 2023-05-18 03:11:50 +0300 commit: d34f5535c20f6f3ca6fc0c4e7148f71dee8fadd8 parent: 21c8faea1d22c1e993f60604c48e39e23097ca46
Commit Summary:
libnice-0.1.21
Diffstat:
2 files changed, 30 insertions, 0 deletions
diff --git a/packages/n/Makefile b/packages/n/Makefile
index 2398340..57dcd83 100644
--- a/packages/n/Makefile
+++ b/packages/n/Makefile
@@ -76,6 +76,7 @@ SUBDIRS := ModemManager           \
            libnetfilter_queue     \
            libnfnetlink           \
            libnftnl               \
+           libnice                \
            libnl                  \
            libnl3                 \
            libnsl                 \
diff --git a/packages/n/libnice/Makefile b/packages/n/libnice/Makefile
new file mode 100644
index 0000000..29ffb8b
--- /dev/null
+++ b/packages/n/libnice/Makefile
@@ -0,0 +1,39 @@
+#
+# Project Home:
+# ============
+#   https://libnice.freedesktop.org
+#
+# Downloads:
+# =========
+#   https://libnice.freedesktop.org/releases
+#
+
+url         = https://libnice.freedesktop.org/releases
+
+versions    = 0.1.21
+
+pkgname     = libnice
+suffix      = tar.gz
+
+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 version in $(versions) ; do \
+	  wget -N $(url)/$(pkgname)-$$version.$(suffix) ;  \
+	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)