Fix wrong dependency for Red

This commit is contained in:
Radon Rosborough 2021-01-22 16:43:53 -08:00
parent 3aa5b44796
commit 2523d8549a
1 changed files with 2 additions and 2 deletions

View File

@ -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/"