summaryrefslogtreecommitdiff
path: root/packages
diff options
context:
space:
mode:
authorkx <kx@radix.pro>2023-06-08 10:55:49 +0300
committerkx <kx@radix.pro>2023-06-08 10:55:49 +0300
commit60c0c1eb3ae0a1d27be27d4298e3ee79b9919747 (patch)
tree118ef4a3a6d6c7014c6a855e03b9105ee125a75d /packages
parent411874c2ab9a88a4a4ac5ee4c6a2d9a64e1fa824 (diff)
downloadsources-60c0c1eb3ae0a1d27be27d4298e3ee79b9919747.tar.xz
PCManFM-1.3.2
Diffstat (limited to 'packages')
-rw-r--r--packages/x/Makefile3
-rw-r--r--packages/x/lxmenu-data/Makefile40
-rw-r--r--packages/x/menu-cache/Makefile41
-rw-r--r--packages/x/pcmanfm/Makefile25
-rw-r--r--packages/x/pcmanfm/libfm/Makefile39
-rw-r--r--packages/x/pcmanfm/pcmanfm/Makefile39
6 files changed, 187 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)