games/qxw: Fix ownership.

Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
This commit is contained in:
Sebastien BALLET 2017-07-15 07:25:27 +07:00 committed by Willy Sudiarto Raharjo
parent 367ae97ff8
commit 8efca66850

View file

@ -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