summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
author Sebastien BALLET2017-07-15 02:25:27 +0200
committer Willy Sudiarto Raharjo2017-07-15 02:25:27 +0200
commit8efca6685025ce6aa2cc833bfb0c3c7d4dc7e7f6 (patch)
treefab434cbb736344c127a425ea7293b606ecdb2c0
parent367ae97ff873d328a0d8f8a5c1e4b678559704ff (diff)
downloadslackbuilds-8efca6685025ce6aa2cc833bfb0c3c7d4dc7e7f6.tar.gz
games/qxw: Fix ownership.
Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
-rw-r--r--games/qxw/qxw.SlackBuild12
1 files changed, 5 insertions, 7 deletions
diff --git a/games/qxw/qxw.SlackBuild b/games/qxw/qxw.SlackBuild
index bed655b819..2a86619053 100644
--- a/games/qxw/qxw.SlackBuild
+++ b/games/qxw/qxw.SlackBuild
@@ -55,7 +55,7 @@ find -L . \
\( -perm 777 -o -perm 775 -o -perm 750 -o -perm 711 -o -perm 555 \
-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 {} \;
make
make install DESTDIR=$PKG
@@ -64,17 +64,15 @@ find $PKG -print0 | xargs -0 file | grep -e "executable" -e "shared object" | gr
| cut -f 1 -d : | xargs strip --strip-unneeded 2> /dev/null || true
mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION
-cp -a \
- LICENCE changelog.gz examples \
- $PKG/usr/doc/$PRGNAM-$VERSION
+cp -a LICENCE changelog.gz examples $PKG/usr/doc/$PRGNAM-$VERSION
-cp -a $CWD/qxw.desktop $PKG/usr/share/applications/qxw.desktop
-cp -a $CWD/qxw.png $PKG/usr/share/pixmaps/
+cp $CWD/qxw.desktop $PKG/usr/share/applications/qxw.desktop
+cp $CWD/qxw.png $PKG/usr/share/pixmaps/
# If qxw-guide.pdf is available, add that too
if [ -f $CWD/$QXWGUIDE-$VERSION.pdf ];
then
- cp -a $CWD/$QXWGUIDE-$VERSION.pdf $PKG/usr/doc/$PRGNAM-$VERSION
+ cp $CWD/$QXWGUIDE-$VERSION.pdf $PKG/usr/doc/$PRGNAM-$VERSION
fi
cat $CWD/$PRGNAM.SlackBuild > $PKG/usr/doc/$PRGNAM-$VERSION/$PRGNAM.SlackBuild