diff options
author | B. Watson <yalhcru@gmail.com> | 2022-03-09 14:47:03 -0500 |
---|---|---|
committer | B. Watson <yalhcru@gmail.com> | 2022-03-09 14:47:03 -0500 |
commit | 98b1c613cd6256f5efb80b0c42bebe48646297eb (patch) | |
tree | f98a38cc2e109801246a93ae9b44c8d06ac2597f /libraries/SFGUI/SFGUI.SlackBuild | |
parent | 4d32b72a2a81b8c1f881d17c2aacdd2ddeac907d (diff) |
libraries/SFGUI: Use correct github URL.
Signed-off-by: B. Watson <yalhcru@gmail.com>
Diffstat (limited to 'libraries/SFGUI/SFGUI.SlackBuild')
-rw-r--r-- | libraries/SFGUI/SFGUI.SlackBuild | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/libraries/SFGUI/SFGUI.SlackBuild b/libraries/SFGUI/SFGUI.SlackBuild index ae3d1cfdf30e4..3ef374ec66e1f 100644 --- a/libraries/SFGUI/SFGUI.SlackBuild +++ b/libraries/SFGUI/SFGUI.SlackBuild @@ -58,15 +58,15 @@ mkdir -p $TMP $PKG $OUTPUT cd $TMP rm -rf $PRGNAM-$VERSION mkdir $PRGNAM-$VERSION -tar xvf $CWD/$PRGNAM-$VERSION.tar.gz --strip-components=1 \ +tar xvf $CWD/$PRGNAM-$VERSION*.tar.gz --strip-components=1 \ -C $PRGNAM-$VERSION cd $PRGNAM-$VERSION chown -R root:root . find -L . \ \( -perm 777 -o -perm 775 -o -perm 750 -o -perm 711 -o -perm 555 \ - -o -perm 511 \) -exec chmod 755 {} \; -o \ + -o -perm 511 \) -exec chmod 755 {} \+ -o \ \( -perm 666 -o -perm 664 -o -perm 640 -o -perm 600 -o -perm 444 \ - -o -perm 440 -o -perm 400 \) -exec chmod 644 {} \; + -o -perm 440 -o -perm 400 \) -exec chmod 644 {} \+ sed -i '/#include <SFML\/Window\/Event.hpp>/a #include <limits>' src/SFGUI/ComboBox.cpp |