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-10-13 03:58:10 +0300 committer: kx <kx@radix.pro> 2023-10-13 03:58:10 +0300 commit: 8d429c3b2a4a9d222c19b0a9d14fed4949d2f7c8 parent: 65a121392a6322435b467c347127030ce283d3e1
Commit Summary:
GNOME: nautilus-45.0
Diffstat:
3 files changed, 44 insertions, 1 deletion
diff --git a/GNOME/core/Makefile b/GNOME/core/Makefile
index 16cad9b..f79ccbb 100644
--- a/GNOME/core/Makefile
+++ b/GNOME/core/Makefile
@@ -38,6 +38,7 @@ SUBDIRS := GConf                          \
            glib2                          \
            glibmm                         \
            gmime                          \
+           gnome-autoar                   \
            gnome-backgrounds              \
            gnome-bluetooth                \
            gnome-calculator               \
diff --git a/GNOME/core/gnome-autoar/Makefile b/GNOME/core/gnome-autoar/Makefile
new file mode 100644
index 0000000..02bd11f
--- /dev/null
+++ b/GNOME/core/gnome-autoar/Makefile
@@ -0,0 +1,55 @@
+#
+# Project Home:
+# ============
+# https://www.gnome.org
+#
+# Repository browse: https://git.gnome.org/browse/gnome-autoar
+#
+# Downloads:
+# =========
+# ftp://ftp.gnome.org/pub/GNOME/sources
+# https://download.gnome.org/sources
+#
+
+
+url       = https://download.gnome.org/sources
+
+versions  = 0.4.4
+
+pkg_name  = gnome-autoar
+arch_type = tar.xz
+suffixes  = $(arch_type)
+
+files     = $(foreach suffix, $(suffixes), $(addsuffix .$(suffix), $(addprefix $(pkg_name)-, $(versions))))
+
+tarballs  = $(addsuffix .$(arch_type), $(addprefix $(pkg_name)-, $(versions)))
+sha1s     = $(addsuffix .sha1sum, $(tarballs))
+
+
+all: $(files) $(sha1s)
+
+
+.PHONY: downloads_clean
+
+$(files):
+	@echo -e "\n======= Downloading '$(pkg_name)' sourses =======\n"
+	@for version in $(versions) ; do \
+	  major=`echo $$version | cut -f1 -d'.'` ; \
+	  if [ "$$major" -gt "3" ] ; then \
+	    major_minor=`echo $$version | sed 's/\([0-9]*\)\([\.].*\)/\1/'` ; \
+	  else \
+	    major_minor=`echo $$version | sed 's/\([0-9][.0-9][0-9]*\)\([\.].*\)/\1/'` ; \
+	  fi ; \
+	  for suffix in $(suffixes) ; do \
+	    wget -N $(url)/$(pkg_name)/$$major_minor/$(pkg_name)-$$version.$$suffix ;  \
+	  done ; \
+	done
+
+$(sha1s): %.$(arch_type).sha1sum : %.$(arch_type)
+	@for tarball in $< ; do \
+	  echo -e "\n======= Calculation the '$$tarball' sha1sum =======\n" ; \
+	  sha1sum --binary $$tarball > $$tarball.sha1sum ; \
+	done
+
+downloads_clean:
+	@rm -f $(files) $(sha1s)
diff --git a/GNOME/core/nautilus/Makefile b/GNOME/core/nautilus/Makefile
index f089838..00a8bc8 100644
--- a/GNOME/core/nautilus/Makefile
+++ b/GNOME/core/nautilus/Makefile
@@ -14,7 +14,7 @@
 
 url       = https://download.gnome.org/sources
 
-versions  = 3.14.0 3.38.2 44.0
+versions  = 3.14.0 3.38.2 44.0 45.0
 
 pkg_name  = nautilus
 arch_type = tar.xz