mirror of
https://github.com/Ponce/slackbuilds
synced 2024-11-22 19:44:21 +01:00
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:
parent
93edc5d2cf
commit
0797566257
2 changed files with 2 additions and 2 deletions
|
@ -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 . \
|
||||
|
|
|
@ -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=""
|
||||
|
|
Loading…
Reference in a new issue