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-06-08 10:55:49 +0300 committer: kx <kx@radix.pro> 2023-06-08 10:55:49 +0300 commit: 60c0c1eb3ae0a1d27be27d4298e3ee79b9919747 parent: 411874c2ab9a88a4a4ac5ee4c6a2d9a64e1fa824
Commit Summary:
PCManFM-1.3.2
Diffstat:
6 files changed, 138 insertions, 0 deletions
diff --git a/packages/x/Makefile b/packages/x/Makefile
index 1649cec..6b6fc58 100644
--- a/packages/x/Makefile
+++ b/packages/x/Makefile
@@ -41,6 +41,8 @@ SUBDIRS := Vulkan               \
            lxappearance         \
            lxappearance-obconf  \
            lxinput              \
+           lxmenu-data          \
+           menu-cache           \
            mesa                 \
            mesa-demos           \
            mozilla-firefox      \
@@ -49,6 +51,7 @@ SUBDIRS := Vulkan               \
            nitrogen             \
            obconf               \
            openbox              \
+           pcmanfm              \
            pidgin               \
            pyqt5                \
            pyxdg                \
diff --git a/packages/x/lxmenu-data/Makefile b/packages/x/lxmenu-data/Makefile
new file mode 100644
index 0000000..a7160f3
--- /dev/null
+++ b/packages/x/lxmenu-data/Makefile
@@ -0,0 +1,40 @@
+#
+# Project Home:
+# ============
+# https://sourceforge.net/projects/lxde
+#
+# Downloads:
+# =========
+# https://downloads.sourceforge.net/project/lxde/lxmenu-data (desktop menu)/
+#
+
+url         = https://downloads.sourceforge.net/project/lxde/lxmenu-data%20%28desktop%20menu%29
+
+versions    = 0.1.5
+
+pkgname     = lxmenu-data
+suffix      = tar.xz
+
+tarballs    = $(addsuffix .$(suffix), $(addprefix $(pkgname)-, $(versions)))
+sha1s       = $(addsuffix .sha1sum, $(tarballs))
+
+
+all: $(tarballs) $(signatures) $(sha1s)
+
+.PHONY: downloads_clean
+
+$(tarballs):
+	@echo -e "\n======= Downloading source tarballs =======\n"
+	@for tarball in $(tarballs) ; do \
+	  wget -N "$(url)/$${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/menu-cache/Makefile b/packages/x/menu-cache/Makefile
new file mode 100644
index 0000000..50af9ac
--- /dev/null
+++ b/packages/x/menu-cache/Makefile
@@ -0,0 +1,41 @@
+#
+# Project Home:
+# ============
+# https://sourceforge.net/projects/lxde
+#
+# Downloads:
+# =========
+# https://downloads.sourceforge.net/project/lxde/menu-cache
+#
+
+url         = https://downloads.sourceforge.net/project/lxde/menu-cache
+
+versions    = 1.1.0
+
+pkgname     = menu-cache
+suffix      = tar.xz
+
+tarballs    = $(addsuffix .$(suffix), $(addprefix $(pkgname)-, $(versions)))
+sha1s       = $(addsuffix .sha1sum, $(tarballs))
+
+
+all: $(tarballs) $(signatures) $(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/pcmanfm/Makefile b/packages/x/pcmanfm/Makefile
new file mode 100644
index 0000000..56b65e0
--- /dev/null
+++ b/packages/x/pcmanfm/Makefile
@@ -0,0 +1,25 @@
+
+#
+# Following command helps to cheate SUBDIRS list:
+# $ tree -fid .
+#
+
+SUBDIRS := libfm   \
+           pcmanfm
+
+
+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/pcmanfm/libfm/Makefile b/packages/x/pcmanfm/libfm/Makefile
new file mode 100644
index 0000000..3ed285b
--- /dev/null
+++ b/packages/x/pcmanfm/libfm/Makefile
@@ -0,0 +1,39 @@
+#
+# Project Home:
+# ============
+#   https://sourceforge.net/projects/pcmanfm
+#
+# Downloads:
+# =========
+#   https://sourceforge.net/projects/pcmanfm/files/PCManFM + Libfm (tarball release)/LibFM
+#
+
+url         = https://downloads.sourceforge.net/project/pcmanfm/PCManFM%20%2B%20Libfm%20%28tarball%20release%29/LibFM
+
+versions    = 1.3.2
+
+pkgname     = libfm
+suffix      = tar.xz
+
+tarballs    = $(addsuffix .$(suffix), $(addprefix $(pkgname)-, $(versions)))
+sha1s       = $(addsuffix .sha1sum, $(tarballs))
+
+
+all: $(tarballs) $(signatures) $(sha1s)
+
+.PHONY: downloads_clean
+
+$(tarballs):
+	@echo -e "\n======= Downloading source tarballs =======\n"
+	@for tarball in $(tarballs) ; do \
+	  wget -N $(url)/$$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/pcmanfm/pcmanfm/Makefile b/packages/x/pcmanfm/pcmanfm/Makefile
new file mode 100644
index 0000000..f637d8a
--- /dev/null
+++ b/packages/x/pcmanfm/pcmanfm/Makefile
@@ -0,0 +1,39 @@
+#
+# Project Home:
+# ============
+#   https://sourceforge.net/projects/pcmanfm
+#
+# Downloads:
+# =========
+#   https://sourceforge.net/projects/pcmanfm/files/PCManFM + Libfm (tarball release)/PCManFM
+#
+
+url         = https://downloads.sourceforge.net/project/pcmanfm/PCManFM%20%2B%20Libfm%20%28tarball%20release%29/PCManFM
+
+versions    = 1.3.2
+
+pkgname     = pcmanfm
+suffix      = tar.xz
+
+tarballs    = $(addsuffix .$(suffix), $(addprefix $(pkgname)-, $(versions)))
+sha1s       = $(addsuffix .sha1sum, $(tarballs))
+
+
+all: $(tarballs) $(signatures) $(sha1s)
+
+.PHONY: downloads_clean
+
+$(tarballs):
+	@echo -e "\n======= Downloading source tarballs =======\n"
+	@for tarball in $(tarballs) ; do \
+	  wget -N $(url)/$$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)