From 2523d8549a5bf0d17af27a8ea62b6845fea7e7ff Mon Sep 17 00:00:00 2001 From: Radon Rosborough Date: Fri, 22 Jan 2021 16:43:53 -0800 Subject: [PATCH] Fix wrong dependency for Red --- langs/red.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/langs/red.yaml b/langs/red.yaml index 7f90f7b..d95b226 100644 --- a/langs/red.yaml +++ b/langs/red.yaml @@ -3,13 +3,13 @@ name: "Red" install: apt: - - libcurl5:i386 + - libcurl4:i386 manual: | install -d "${pkg}/opt/red/skel" install -d "${pkg}/usr/local/bin" path="$(curl -fsSL http://static.red-lang.org/download.html | grep -Eo '/dl/linux/[^"]+' | head -n1)" - wget "http://static.red-lang.org/${path}" -O red + wget "http://static.red-lang.org${path}" -O red chmod +x red cp red "${pkg}/usr/local/bin/"