diff options
author | Andrew Clemons <andrew.clemons@gmail.com> | 2022-11-25 23:30:23 +0900 |
---|---|---|
committer | Willy Sudiarto Raharjo <willysr@slackbuilds.org> | 2022-11-26 09:11:47 +0700 |
commit | 24c71917f89d978de3f40d9bd7e3aafb3af447b0 (patch) | |
tree | 4cccd921e16df67b4a105e69e25e9f79c19f307e /development/ttk-themes/ttk-themes.SlackBuild | |
parent | 0abbd3d12aabd7818d3a37667f1084badde9e96e (diff) |
development/ttk-themes: Fix github tarball handling.
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 'development/ttk-themes/ttk-themes.SlackBuild')
-rw-r--r-- | development/ttk-themes/ttk-themes.SlackBuild | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/development/ttk-themes/ttk-themes.SlackBuild b/development/ttk-themes/ttk-themes.SlackBuild index b09f35b8eb..daea86641f 100644 --- a/development/ttk-themes/ttk-themes.SlackBuild +++ b/development/ttk-themes/ttk-themes.SlackBuild @@ -47,10 +47,9 @@ set -e rm -rf $PKG mkdir -p $TMP $PKG $OUTPUT cd $TMP -rm -rf $PRGNAM-$VERSION -tar xvf $CWD/$PRGNAM-$VERSION.tar.gz -mv $SRCNAM-$VERSION $PRGNAM-$VERSION -cd $PRGNAM-$VERSION +rm -rf $SRCNAM-$VERSION +tar xvf $CWD/$SRCNAM-$VERSION.tar.gz +cd $SRCNAM-$VERSION chown -R root:root . find -L . \ \( -perm 777 -o -perm 775 -o -perm 750 -o -perm 711 -o -perm 555 \ |