libraries/Atlas-C++: Handle url-encoded filenames.

Signed-off-by: Andrew Clemons <andrew.clemons@gmail.com>

Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
This commit is contained in:
Andrew Clemons 2022-01-23 16:03:34 +13:00 committed by Willy Sudiarto Raharjo
parent 08f312226c
commit 391fbd6eb0
No known key found for this signature in database
GPG key ID: 3F617144D7238786

View file

@ -70,7 +70,11 @@ rm -rf $PKG
mkdir -p $TMP $PKG $OUTPUT
cd $TMP
rm -rf $PRGNAM-$VERSION
tar xvf $CWD/$PRGNAM-$VERSION.tar.gz
if [ -e "$CWD/Atlas-C%2B%2B-$VERSION.tar.gz" ] ; then
tar xvf "$CWD/Atlas-C%2B%2B-$VERSION.tar.gz"
else
tar xvf $CWD/$PRGNAM-$VERSION.tar.gz
fi
cd $PRGNAM-$VERSION
chown -R root:root .
find -L . \