summaryrefslogtreecommitdiff
path: root/GNOME
diff options
context:
space:
mode:
authorkx <kx@radix.pro>2023-10-13 15:32:25 +0300
committerkx <kx@radix.pro>2023-10-13 15:32:25 +0300
commitd32bb8eee4ac886fc43b921d9d418074f6a7012f (patch)
tree100e906864be1bd60e1b8322064fc61837648c78 /GNOME
parentbd418e40067835df0fd21ed53589b23dc7f56851 (diff)
downloadsources-d32bb8eee4ac886fc43b921d9d418074f6a7012f.tar.xz
GNOME: libcloudproviders-0.3.4
Diffstat (limited to 'GNOME')
-rw-r--r--GNOME/core/Makefile1
-rw-r--r--GNOME/core/libcloudproviders/Makefile55
2 files changed, 56 insertions, 0 deletions
diff --git a/GNOME/core/Makefile b/GNOME/core/Makefile
index f79ccbb..ed67cef 100644
--- a/GNOME/core/Makefile
+++ b/GNOME/core/Makefile
@@ -86,6 +86,7 @@ SUBDIRS := GConf \
libadwaita \
libart_lgpl \
libchamplain \
+ libcloudproviders \
libcroco \
libgdata \
libgee \
diff --git a/GNOME/core/libcloudproviders/Makefile b/GNOME/core/libcloudproviders/Makefile
new file mode 100644
index 0000000..79eefe7
--- /dev/null
+++ b/GNOME/core/libcloudproviders/Makefile
@@ -0,0 +1,55 @@
+#
+# Project Home:
+# ============
+# https://www.gnome.org
+#
+# Repository browse: https://git.gnome.org/browse/libcloudproviders
+#
+# Downloads:
+# =========
+# ftp://ftp.gnome.org/pub/GNOME/sources
+# https://download.gnome.org/sources
+#
+
+
+url = https://download.gnome.org/sources
+
+versions = 0.3.4
+
+pkg_name = libcloudproviders
+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)