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-09 23:18:24 +0300 committer: kx <kx@radix.pro> 2023-04-09 23:18:24 +0300 commit: 8b7e76c7ad2445c0920e9d056728f7b6baaa0c43 parent: 3dd1914515dc5c714451bc4148f0abb51672ed06
Commit Summary:
network packages
Diffstat:
2 files changed, 33 insertions, 0 deletions
diff --git a/packages/n/pppsetup/Makefile b/packages/n/pppsetup/Makefile
new file mode 100644
index 0000000..e7b1dfd
--- /dev/null
+++ b/packages/n/pppsetup/Makefile
@@ -0,0 +1,37 @@
+#
+# Project Home:
+# ============
+# https://slackware.com
+#
+# Downloads:
+# =========
+# https://mirrors.slackware.com/slackware/slackware-14.1/source/n/ppp
+#
+
+url         = https://mirrors.slackware.com/slackware/slackware-14.2/source/n/ppp
+
+version     = 1.98
+pkgname     = pppsetup
+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/n/pppsetup/README.TXT b/packages/n/pppsetup/README.TXT
new file mode 100644
index 0000000..4da9312
--- /dev/null
+++ b/packages/n/pppsetup/README.TXT
@@ -0,0 +1,9 @@
+
+/*
+  ppsetup script for ppp:
+  ----------------------
+
+  Original package PPPsetup.v.1.98 made by Kent Robotti
+  is lost forever, a copy exists only in slackware sources.
+
+ */