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-06 16:08:32 +0300 committer: kx <kx@radix.pro> 2023-04-06 16:08:32 +0300 commit: c9b87548f19c4323592abff0a86bc1dac45658f0 parent: 8d07317ed20e7544501edfcc9894d5002fd1771d
Commit Summary:
GNU packages
Diffstat:
2 files changed, 29 insertions, 0 deletions
diff --git a/GNU/mpc/Makefile b/GNU/mpc/Makefile
new file mode 100644
index 0000000..43a3775
--- /dev/null
+++ b/GNU/mpc/Makefile
@@ -0,0 +1,36 @@
+#
+# Download: https://www.gnu.org/prep/ftp.html
+#
+# You can use the generic url http://ftpmirror.gnu.org 
+# to automatically choose a nearby and up-to-date mirror.
+#
+# original url: https://ftp.gnu.org/gnu/mpc/mpc-$(version)
+#
+
+url         = https://ftp.gnu.org/gnu/mpc
+
+versions    = 1.0.1 1.0.2 1.0.3 1.1.0 1.2.0 1.2.1 1.3.0 1.3.1
+
+suffix      = tar.gz
+
+tarballs    = $(addsuffix .$(suffix), $(addprefix mpc-, $(versions)))
+sha1s       = $(addsuffix .sha1sum, $(tarballs))
+
+all: $(tarballs) $(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 '$$tarball' sha1sum =======\n" ; \
+	  sha1sum --binary $$tarball > $$tarball.sha1sum ; \
+	done
+
+downloads_clean:
+	@rm -rf $(tarballs) $(sha1s)
diff --git a/GNU/mpc/mpc-1.0.1.pdf b/GNU/mpc/mpc-1.0.1.pdf
new file mode 100644
index 0000000..f1645a0
Binary files /dev/null and b/GNU/mpc/mpc-1.0.1.pdf differ
diff --git a/GNU/mpc/mpc-1.3.1.txt b/GNU/mpc/mpc-1.3.1.txt
new file mode 100644
index 0000000..ebc9027
--- /dev/null
+++ b/GNU/mpc/mpc-1.3.1.txt
@@ -0,0 +1,4 @@
+
+sources: https://multiprecision.org/download.html
+
+Requirements of 1.3.1: gmp-5.0.0, mpfr-4.1.0