network/llhttp: Fix github tarball handling.

The actual tag name is `release/v8.1.0` with the forward slash,
leading to the somewhat confusing URL (there is also a different
v8.1.0 tag).

https://slackbuilds.org/GITHUB_URLs.txt

This avoids having differently named tarballs and src
directories.

Signed-off-by: Andrew Clemons <andrew.clemons@gmail.com>

Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
This commit is contained in:
Andrew Clemons 2023-01-02 11:55:03 +09:00 committed by Willy Sudiarto Raharjo
parent 93edc5d2cf
commit 0797566257
No known key found for this signature in database
GPG key ID: 3F617144D7238786
2 changed files with 2 additions and 2 deletions

View file

@ -67,7 +67,7 @@ rm -rf $PKG
mkdir -p $TMP $PKG $OUTPUT
cd $TMP
rm -rf llhttp-release-v$VERSION
tar xvf $CWD/$PRGNAM-$VERSION.tar.gz
tar xvf $CWD/llhttp-release-v$VERSION.tar.gz
cd llhttp-release-v$VERSION
chown -R root:root .
find -L . \

View file

@ -1,7 +1,7 @@
PRGNAM="llhttp"
VERSION="8.1.0"
HOMEPAGE="https://github.com/nodejs/llhttp"
DOWNLOAD="https://github.com/nodejs/llhttp/archive/refs/tags/release/v8.1.0/llhttp-8.1.0.tar.gz"
DOWNLOAD="https://github.com/nodejs/llhttp/archive/release/v8.1.0/llhttp-release-v8.1.0.tar.gz"
MD5SUM="40f67948b3c0978a4b92e1b3ee214cdd"
DOWNLOAD_x86_64=""
MD5SUM_x86_64=""