diff options
author | Andrew Clemons <andrew.clemons@gmail.com> | 2022-11-03 15:37:08 +0900 |
---|---|---|
committer | Willy Sudiarto Raharjo <willysr@slackbuilds.org> | 2022-11-05 21:15:17 +0700 |
commit | cf8372d282e44360e51ac5a5a731a48ecf103a94 (patch) | |
tree | 0f4f645632a377b882328b92550993cb6262e5fd | |
parent | 75eebf64c599fe37b66d4ce801c62c21db33ee62 (diff) | |
download | slackbuilds-cf8372d282e44360e51ac5a5a731a48ecf103a94.tar.gz |
misc/untldr: Fix github tarball handling.
If you follow the suggestions in:
https://slackbuilds.org/GITHUB_URLs.txt
you won't have to worry about the difference in src names and dir
names.
Signed-off-by: Andrew Clemons <andrew.clemons@gmail.com>
Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
-rw-r--r-- | misc/untldr/untldr.SlackBuild | 2 | ||||
-rw-r--r-- | misc/untldr/untldr.info | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/misc/untldr/untldr.SlackBuild b/misc/untldr/untldr.SlackBuild index 96d9e4eca6..89dcc441f5 100644 --- a/misc/untldr/untldr.SlackBuild +++ b/misc/untldr/untldr.SlackBuild @@ -55,7 +55,7 @@ rm -rf "$PKG" mkdir -p "$TMP" "$PKG" "$OUTPUT" cd "$TMP" rm -rf $PRGNAM-"$VERSION" -tar xvf "$CWD"/$PRGNAM-v"$VERSION".tar.gz +tar xvf "$CWD"/$PRGNAM-"$VERSION".tar.gz cd $PRGNAM-"$VERSION" chown -R root:root . chmod -R u+w,go+r-w,a-s . diff --git a/misc/untldr/untldr.info b/misc/untldr/untldr.info index 59b96d532a..05153c9b07 100644 --- a/misc/untldr/untldr.info +++ b/misc/untldr/untldr.info @@ -1,7 +1,7 @@ PRGNAM="untldr" VERSION="1.1.0" HOMEPAGE="https://github.com/unInstance/untldr" -DOWNLOAD="https://github.com/unInstance/untldr/archive/v1.1.0/untldr-v1.1.0.tar.gz" +DOWNLOAD="https://github.com/unInstance/untldr/archive/v1.1.0/untldr-1.1.0.tar.gz" MD5SUM="6ebb75d889f1c27f7a215242bdb9b122" DOWNLOAD_x86_64="" MD5SUM_x86_64="" |