summaryrefslogtreecommitdiff
path: root/GNOME
diff options
context:
space:
mode:
authorkx <kx@radix.pro>2023-10-13 03:58:10 +0300
committerkx <kx@radix.pro>2023-10-13 03:58:10 +0300
commit8d429c3b2a4a9d222c19b0a9d14fed4949d2f7c8 (patch)
tree5426d4ee7d9edf9a6f9b3c8107746620a4b39701 /GNOME
parent65a121392a6322435b467c347127030ce283d3e1 (diff)
downloadsources-8d429c3b2a4a9d222c19b0a9d14fed4949d2f7c8.tar.xz
GNOME: nautilus-45.0
Diffstat (limited to 'GNOME')
-rw-r--r--GNOME/core/Makefile1
-rw-r--r--GNOME/core/gnome-autoar/Makefile55
-rw-r--r--GNOME/core/nautilus/Makefile2
3 files changed, 57 insertions, 1 deletions
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