mirror of
https://github.com/Ponce/slackbuilds
synced 2024-11-16 19:50:19 +01:00
games/qxw: Fix ownership.
Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
This commit is contained in:
parent
367ae97ff8
commit
8efca66850
1 changed files with 5 additions and 7 deletions
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue