summaryrefslogtreecommitdiffstats
path: root/desktop
diff options
context:
space:
mode:
author Andrew Clemons <andrew.clemons@gmail.com>2022-02-28 23:59:40 +1300
committer Willy Sudiarto Raharjo <willysr@slackbuilds.org>2022-03-01 19:35:44 +0700
commit4fdcda7f777a6cae756aeb496cf78c06e533bf7a (patch)
treef56055ce625b926645421030ca9f03feb4f8e444 /desktop
parent76581dfce842be6b71fea35f5a9f3a8da64052bc (diff)
downloadslackbuilds-4fdcda7f777a6cae756aeb496cf78c06e533bf7a.tar.gz
slackbuilds-4fdcda7f777a6cae756aeb496cf78c06e533bf7a.tar.xz
desktop/pidgin-window_merge: Fix github tarball handling.
Signed-off-by: Andrew Clemons <andrew.clemons@gmail.com> Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
Diffstat (limited to 'desktop')
-rw-r--r--desktop/pidgin-window_merge/pidgin-window_merge.SlackBuild7
1 files changed, 6 insertions, 1 deletions
diff --git a/desktop/pidgin-window_merge/pidgin-window_merge.SlackBuild b/desktop/pidgin-window_merge/pidgin-window_merge.SlackBuild
index 00199b698a..ff6ce59f87 100644
--- a/desktop/pidgin-window_merge/pidgin-window_merge.SlackBuild
+++ b/desktop/pidgin-window_merge/pidgin-window_merge.SlackBuild
@@ -75,7 +75,12 @@ rm -rf $PKG
mkdir -p $TMP $PKG $OUTPUT
cd $TMP
rm -rf window_merge-$VERSION
-tar xvf $CWD/window_merge-$VERSION.tar.gz || tar xvf $CWD/$VERSION.tar.gz
+# respecting content-disposition may include cgi params in the filename
+TARBALL=$CWD/window_merge-$VERSION.tar.gz
+if [ ! -e $TARBALL ]; then
+ TARBALL="$(/bin/ls $TARBALL\?* | head -1)"
+fi
+tar xvf $TARBALL
cd window_merge-$VERSION
chown -R root:root .
find -L . \