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-04-11 06:54:40 +0300 committer: kx <kx@radix.pro> 2023-04-11 06:54:40 +0300 commit: 19dc4c5d37a41a6fa8b1076b568191d0b61389c2 parent: 616e36d9e9e3e56af1ea2db055012b77863d09e6
Commit Summary:
applications
Diffstat:
5 files changed, 90 insertions, 0 deletions
diff --git a/packages/a/isapnptools/1.26/Makefile b/packages/a/isapnptools/1.26/Makefile
new file mode 100644
index 0000000..5b26636
--- /dev/null
+++ b/packages/a/isapnptools/1.26/Makefile
@@ -0,0 +1,39 @@
+#
+# Project Home:
+# ============
+#   https://ibiblio.org/pub/linux/system/hardware
+#   https://slackware.com
+#
+# Downloads:
+# =========
+#   https://ibiblio.org/pub/linux/system/hardware
+#   https://mirrors.slackware.com/slackware/slackware-14.1/source/a/isapnptools
+#
+
+url         = https://mirrors.slackware.com/slackware/slackware-14.1/source/a/isapnptools
+
+version     = 1.26
+pkgname     = isapnptools
+suffix      = tar.xz
+
+tarball     = $(addsuffix .$(suffix), $(addprefix $(pkgname)-,$(version)))
+sha1s       = $(addsuffix .sha1sum, $(tarball))
+
+
+all: $(tarball) $(sha1s)
+
+.PHONY: downloads_clean
+
+
+$(tarball):
+	@echo -e "\n======= Downloading source tarball =======\n"
+	@wget -N $(url)/$(tarball)
+
+$(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 $(tarball) $(sha1s)
diff --git a/packages/a/isapnptools/1.26/README.TXT b/packages/a/isapnptools/1.26/README.TXT
new file mode 100644
index 0000000..c059de8
--- /dev/null
+++ b/packages/a/isapnptools/1.26/README.TXT
@@ -0,0 +1,8 @@
+
+/*
+  isapnptools:
+  -----------
+
+  Original package is lost forever, a copy exists only in ibiblio.org and  slackware sources.
+
+ */
diff --git a/packages/a/isapnptools/1.27/Makefile b/packages/a/isapnptools/1.27/Makefile
new file mode 100644
index 0000000..5ecb097
--- /dev/null
+++ b/packages/a/isapnptools/1.27/Makefile
@@ -0,0 +1,43 @@
+#
+# Project Home:
+# ============
+#   https://ibiblio.org/pub/linux/system/hardware
+#   https://slackware.com
+#
+# Downloads:
+# =========
+#   https://ibiblio.org/pub/linux/system/hardware
+#   https://mirrors.slackware.com/slackware/slackware-14.1/source/a/isapnptools
+#
+
+url         = https://ibiblio.org/pub/linux/system/hardware
+
+version     = 1.27
+pkgname     = isapnptools
+suffix      = tar.gz
+
+tarball     = $(addsuffix .$(suffix), $(addprefix $(pkgname)-,$(version)))
+sha1s       = $(addsuffix .sha1sum, $(tarball))
+
+
+all: $(tarball) $(sha1s)
+
+.PHONY: downloads_clean
+
+
+$(tarball):
+	@echo -e "\n======= Downloading source tarball =======\n"
+	@wget -N $(url)/$(pkgname)-$(version).tgz
+	@tar xzf $(pkgname)-$(version).tgz
+	@tar cjf $(tarball) $(pkgname)-$(version)
+	@rm -rf $(pkgname)-$(version)
+	@rm -f $(pkgname)-$(version).tgz
+
+$(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 $(tarball) $(sha1s)
diff --git a/packages/a/isapnptools/1.27/README.TXT b/packages/a/isapnptools/1.27/README.TXT
new file mode 100644
index 0000000..c059de8
--- /dev/null
+++ b/packages/a/isapnptools/1.27/README.TXT
@@ -0,0 +1,8 @@
+
+/*
+  isapnptools:
+  -----------
+
+  Original package is lost forever, a copy exists only in ibiblio.org and  slackware sources.
+
+ */
diff --git a/packages/a/isapnptools/Makefile b/packages/a/isapnptools/Makefile
new file mode 100644
index 0000000..4503d30
--- /dev/null
+++ b/packages/a/isapnptools/Makefile
@@ -0,0 +1,25 @@
+
+#
+# Following command helps to cheate SUBDIRS list:
+# $ tree -fid .
+#
+
+SUBDIRS := 1.26 \
+           1.27
+
+
+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