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:
1 file changed, 32 insertions, 0 deletions
diff --git a/packages/a/ghostscript/Makefile b/packages/a/ghostscript/Makefile
new file mode 100644
index 0000000..8bb9dbc
--- /dev/null
+++ b/packages/a/ghostscript/Makefile
@@ -0,0 +1,43 @@
+#
+# Project Home:
+# ============
+#   https://www.ghostscript.com
+#   https://github.com/ArtifexSoftware
+#
+# Downloads:
+# =========
+#   https://github.com/ArtifexSoftware/ghostpdl-downloads
+#
+
+url         = https://github.com/ArtifexSoftware/ghostpdl-downloads/releases/download
+
+versions    = 9.53.2 9.53.3 9.56.1 10.0.0 10.01.1
+
+pkgname     = ghostscript
+suffix      = tar.xz
+
+tarballs    = $(addsuffix .$(suffix), $(addprefix $(pkgname)-,$(versions)))
+sha1s       = $(addsuffix .sha1sum, $(tarballs))
+
+
+all: $(tarballs) $(sha1s)
+
+.PHONY: downloads_clean
+
+
+$(tarballs):
+	@echo -e "\n======= Downloading source tarball =======\n"
+	@for tarball in $(tarballs) ; do \
+	   version=`echo $$tarball | sed 's/\([a-zA-Z-]*\)\([0-9]*[.][0-9]*[.][0-9]*\)\(\..*\)/\2/'` ; \
+	   short=`echo $$version | sed 's/\.//g'` ; \
+	   wget -N $(url)/gs$$short/$$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)