Radix cross Linux 3pp sources

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

343 Commits   0 Branches   0 Tags
author: kx <kx@radix.pro> 2023-05-21 00:43:12 +0300 committer: kx <kx@radix.pro> 2023-05-21 00:43:12 +0300 commit: 0bf9afb59e0a2b33da15bc23a398e313f067dd58 parent: 308dc3c01a4661b729c03a042ae0a247475b0065
Commit Summary:
Pidgin-2.14.12
Diffstat:
4 files changed, 79 insertions, 0 deletions
diff --git a/packages/x/Makefile b/packages/x/Makefile
index 9fd3646..d27fc6e 100644
--- a/packages/x/Makefile
+++ b/packages/x/Makefile
@@ -46,6 +46,7 @@ SUBDIRS := Vulkan               \
            nitrogen             \
            obconf               \
            openbox              \
+           pidgin               \
            pyxdg                \
            qt5                  \
            startup-notification \
diff --git a/packages/x/pidgin/Makefile b/packages/x/pidgin/Makefile
new file mode 100644
index 0000000..805815c
--- /dev/null
+++ b/packages/x/pidgin/Makefile
@@ -0,0 +1,25 @@
+
+#
+# Following command helps to cheate SUBDIRS list:
+# $ tree -fid .
+#
+
+SUBDIRS := pidgin            \
+           pidgin-encryption
+
+
+all-recursive downloads_clean-recursive:
+	@set fnord $(MAKEFLAGS); amf=$$2; \
+	target=`echo $@ | sed s/-recursive//`; \
+	list='$(SUBDIRS)'; for subdir in $$list; do \
+	  echo "Making $$target in $$subdir"; \
+	  local_target="$$target"; \
+	  (cd $$subdir && $(MAKE) $$fnord $$local_target) \
+	   || case "$$amf" in *=*) exit 1;; *k*) fail=yes;; *) exit 1;; esac; \
+	done; test -z "$$fail"
+
+all: all-recursive
+
+downloads_clean: downloads_clean-recursive
+
+.PHONY: all-recursive downloads_clean-recursive all downloads_clean
diff --git a/packages/x/pidgin/pidgin-encryption/Makefile b/packages/x/pidgin/pidgin-encryption/Makefile
new file mode 100644
index 0000000..30cc58f
--- /dev/null
+++ b/packages/x/pidgin/pidgin-encryption/Makefile
@@ -0,0 +1,40 @@
+#
+# Project Home:
+# ============
+#   https://pidgin-encrypt.sourceforge.net
+#
+# Downloads:
+# =========
+#   https://downloads.sourceforge.net/project/pidgin-encrypt/Releases/${VERSION}
+#
+
+url         = https://downloads.sourceforge.net/project/pidgin-encrypt/Releases
+
+versions    = 3.1
+
+pkgname     = pidgin-encryption
+suffix      = tar.gz
+
+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 \
+	  version=`echo $$tarball | sed 's/\([a-zA-Z-]*\)\([0-9][.0-9]*\)\(\..*\)/\2/'` ; \
+	  wget -N $(url)/$$version/$$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)
diff --git a/packages/x/pidgin/pidgin/Makefile b/packages/x/pidgin/pidgin/Makefile
new file mode 100644
index 0000000..3126254
--- /dev/null
+++ b/packages/x/pidgin/pidgin/Makefile
@@ -0,0 +1,40 @@
+#
+# Project Home:
+# ============
+#   https://pidgin.im
+#
+# Downloads:
+# =========
+#   https://downloads.sourceforge.net/project/pidgin/Pidgin/${VERSION}
+#
+
+url         = https://downloads.sourceforge.net/project/pidgin/Pidgin
+
+versions    = 2.14.12
+
+pkgname     = pidgin
+suffix      = tar.gz
+
+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 \
+	  version=`echo $$tarball | sed 's/\([a-zA-Z-]*\)\([0-9][.0-9]*[.0-9]*\)\(\..*\)/\2/'` ; \
+	  wget -N $(url)/$$version/$$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)