summaryrefslogtreecommitdiff
path: root/GNOME
diff options
context:
space:
mode:
authorkx <kx@radix.pro>2023-06-13 06:46:39 +0300
committerkx <kx@radix.pro>2023-06-13 06:46:39 +0300
commitab277f508d89a9b0bfdefc02924d88e3627437a2 (patch)
treee9a394e93a2c585f039954307cc1a165a2f0b648 /GNOME
parent685b6422a5048e0bd4527332b7fde2d4fc05e76f (diff)
downloadsources-ab277f508d89a9b0bfdefc02924d88e3627437a2.tar.xz
cambalache-0.10.3
Diffstat (limited to 'GNOME')
-rw-r--r--GNOME/apps/Makefile1
-rw-r--r--GNOME/apps/cambalache/Makefile63
2 files changed, 64 insertions, 0 deletions
diff --git a/GNOME/apps/Makefile b/GNOME/apps/Makefile
index 8bfb32e..2a412b6 100644
--- a/GNOME/apps/Makefile
+++ b/GNOME/apps/Makefile
@@ -9,6 +9,7 @@ SUBDIRS := accerciser \
anjuta \
bijiben \
brasero \
+ cambalache \
cheese \
devhelp \
evolution \
diff --git a/GNOME/apps/cambalache/Makefile b/GNOME/apps/cambalache/Makefile
new file mode 100644
index 0000000..ac29e5b
--- /dev/null
+++ b/GNOME/apps/cambalache/Makefile
@@ -0,0 +1,63 @@
+#
+# Project Home:
+# ============
+# https://gitlab.gnome.org/jpu/cambalache
+#
+# GitLab:
+# ======
+# https://gitlab.gnome.org/jpu/cambalache
+#
+# Clone:
+# =====
+# git clone https://gitlab.gnome.org/jpu/cambalache.git
+#
+
+url = https://gitlab.gnome.org/jpu
+
+repo_name = cambalache
+pkg_name = cambalache
+suffix = tar.xz
+
+versions = 0.10.3
+
+git_repo = .git_clone
+tarballs = $(addsuffix .tar.xz, $(addprefix $(pkg_name)-, $(versions)))
+sha1s = $(addsuffix .sha1sum, $(tarballs))
+
+TARGETS = repository_clean
+
+
+all: $(TARGETS)
+
+.PHONY: downloads_clean repository_clean
+
+$(git_repo):
+ @echo -e "\n======= Clone $(repo_name).git repository =======\n"
+ @rm -rf $(repo_name)
+ @git clone $(url)/$(repo_name).git $(repo_name)
+ @touch $@
+
+$(tarballs): $(git_repo)
+ @for version in $(versions) ; do \
+ tag=`echo $$version` ; \
+ if [ ! -f $(repo_name)-$$version.$(suffix) ]; then \
+ echo -e "\n======= Creating '$(repo_name)-$$version.$(suffix)' snapshot =======" ; \
+ ( cd $(repo_name) && \
+ git archive --format=tar --prefix=$(pkg_name)-$$version/ $$tag | \
+ xz >../$(pkg_name)-$$version.$(suffix) ) ; \
+ fi ; \
+ done
+
+$(sha1s): %.tar.xz.sha1sum : %.tar.xz
+ @for tarball in $< ; do \
+ echo -e "\n======= Calculation the '$$tarball' sha1sum =======" ; \
+ sha1sum --binary $$tarball > $$tarball.sha1sum ; \
+ done
+
+repository_clean: $(sha1s)
+ @echo -e "\n======= Remove cloned $(repo_name).git repository =======\n"
+ @rm -rf $(git_repo) $(repo_name)
+
+downloads_clean:
+ @rm -rf $(tarballs) $(sha1s)
+ @rm -rf $(git_repo) $(repo_name)