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-09 23:18:24 +0300 committer: kx <kx@radix.pro> 2023-04-09 23:18:24 +0300 commit: 8b7e76c7ad2445c0920e9d056728f7b6baaa0c43 parent: 3dd1914515dc5c714451bc4148f0abb51672ed06
Commit Summary:
network packages
Diffstat:
1 file changed, 29 insertions, 0 deletions
diff --git a/packages/n/ethtool/Makefile b/packages/n/ethtool/Makefile
new file mode 100644
index 0000000..5edb4c6
--- /dev/null
+++ b/packages/n/ethtool/Makefile
@@ -0,0 +1,39 @@
+#
+# Project Home:
+# ============
+# https://www.kernel.org/pub/software/network/ethtool
+#
+# Downloads:
+# =========
+# https://mirrors.edge.kernel.org/pub/software/network/ethtool
+#
+
+url         = https://www.kernel.org/pub/software/network/ethtool
+
+versions    = 2.6.36 3.0 3.4 3.5 3.8 3.9 3.10 3.11 3.12 3.18 4.5 5.3 5.10 5.19 6.2
+
+pkgname     = ethtool
+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)