diff options
author | Andrew Clemons <andrew.clemons@gmail.com> | 2023-01-02 11:55:03 +0900 |
---|---|---|
committer | Willy Sudiarto Raharjo <willysr@slackbuilds.org> | 2023-01-07 08:13:25 +0700 |
commit | 079756625720a4becb05409524301910225abe3f (patch) | |
tree | 22ebf4674297d06a04afdee273a5a7bfdd2b0d39 /network/llhttp | |
parent | 93edc5d2cfdab3f639893e5ad356bb5aff76b6b2 (diff) |
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>
Diffstat (limited to 'network/llhttp')
-rw-r--r-- | network/llhttp/llhttp.SlackBuild | 2 | ||||
-rw-r--r-- | network/llhttp/llhttp.info | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/network/llhttp/llhttp.SlackBuild b/network/llhttp/llhttp.SlackBuild index 815b4ef7f4bb..b825438e8169 100644 --- a/network/llhttp/llhttp.SlackBuild +++ b/network/llhttp/llhttp.SlackBuild @@ -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 . \ diff --git a/network/llhttp/llhttp.info b/network/llhttp/llhttp.info index 6b929db74f3a..91ac4e6d7b36 100644 --- a/network/llhttp/llhttp.info +++ b/network/llhttp/llhttp.info @@ -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="" |