From 91e5e92296918c82a2ea53c295e636dc46057b77 Mon Sep 17 00:00:00 2001 From: falkTX Date: Sun, 27 Feb 2022 00:59:48 +0000 Subject: [PATCH] HACK: use downloads.xiph.org for speexdsp vendored tarball Signed-off-by: falkTX --- deps/Makefile | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/deps/Makefile b/deps/Makefile index 1d77f37..56ba9a8 100644 --- a/deps/Makefile +++ b/deps/Makefile @@ -190,7 +190,10 @@ $(DEP_PATH)/libsamplerate-0.1.9/.stamp-patched: $(DEP_PATH)/lib/libspeexdsp.a: $(DEP_PATH)/speexdsp-SpeexDSP-1.2rc3/.stamp-patched $(DEP_PATH)/speexdsp-SpeexDSP-1.2rc3/.stamp-patched: - $(DEP_MAKE) -C $(DEP_PATH) speexdsp-SpeexDSP-1.2rc3 + $(DEP_MAKE) -C $(DEP_PATH) speexdsp-SpeexDSP-1.2rc3 \ + WGET="wget -c http://downloads.xiph.org/releases/speex/speexdsp-1.2rc3.tar.gz && mv speexdsp-1.2rc3.tar.gz speexdsp-SpeexDSP-1.2rc3.tgz #" \ + SHA256SUM="true" \ + UNTAR="mkdir -p speexdsp-SpeexDSP-1.2rc3 && tar -x --strip-components=1 --directory=$(DEP_PATH)/speexdsp-SpeexDSP-1.2rc3 -f" sed -i -e "s/#pragma GCC visibility push/#error we dont want this/" $(DEP_PATH)/speexdsp-SpeexDSP-1.2rc3/configure touch $@