Radix cross Linux 3pp sources

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

423 Commits   0 Branches   0 Tags
author: kx <kx@radix.pro> 2023-12-10 12:08:22 +0300 committer: kx <kx@radix.pro> 2023-12-10 12:08:22 +0300 commit: 4565416880fd96e7841ade938c17c2606915b484 parent: 7843b3f52f42cb701d5d62d21be6e5e85f9c137c
Commit Summary:
MATE-1.27
Diffstat:
1 file changed, 29 insertions, 0 deletions
diff --git a/MATE/1.27/mozo/Makefile b/MATE/1.27/mozo/Makefile
new file mode 100644
index 0000000..1029909
--- /dev/null
+++ b/MATE/1.27/mozo/Makefile
@@ -0,0 +1,39 @@
+#
+# Project Home:
+# ============
+#   https://mate-desktop.org
+#
+# Downloads:
+# =========
+#   https://pub.mate-desktop.org/releases/1.27
+#
+
+url         = https://pub.mate-desktop.org/releases/1.27
+
+versions    = 1.27.0
+
+pkgname     = mozo
+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)