diff options
author | Johannes Schoepfer <slackbuilds@schoepfer.info> | 2024-03-29 21:27:02 +0700 |
---|---|---|
committer | Willy Sudiarto Raharjo <willysr@slackbuilds.org> | 2024-03-29 21:27:02 +0700 |
commit | 9226dc60b2be26339b871476e3e12970aad22719 (patch) | |
tree | 7b103bb2c21ebd18f6931ecccd2e486d3f345955 /games | |
parent | d4016987569b6c0035615a535a4bf6372467dcbe (diff) |
games/mednafen: Disable debugger.
Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
Diffstat (limited to 'games')
-rw-r--r-- | games/mednafen/mednafen.SlackBuild | 13 |
1 files changed, 6 insertions, 7 deletions
diff --git a/games/mednafen/mednafen.SlackBuild b/games/mednafen/mednafen.SlackBuild index a9574871cbfc..e7f85b838492 100644 --- a/games/mednafen/mednafen.SlackBuild +++ b/games/mednafen/mednafen.SlackBuild @@ -2,9 +2,9 @@ # Slackware build script for mednafen -# Copyright 2008 - 2014 Heinz Wiesinger, Amsterdam, The Netherlands -# Copyright 2014 - 2016 Ryan P.C. McQuen | Everett, WA -# Copyright 2017 - 2022 Johannes Schoepfer, Germany +# Copyright 2008-2014 Heinz Wiesinger, Amsterdam, The Netherlands +# Copyright 2014-2016 Ryan P.C. McQuen | Everett, WA +# Copyright 2017-2024 Johannes Schoepfer, Germany # All rights reserved. # # Redistribution and use of this script, with or without modification, is @@ -74,9 +74,9 @@ cd $PRGNAM 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 {} + # sanitize build flags, thanks to the gentoo folks sed \ @@ -113,7 +113,6 @@ CXXFLAGS="$SLKCFLAGS" \ --sysconfdir=/etc \ --localstatedir=/var \ --mandir=/usr/man \ - --disable-debugger \ --with-external-lzo \ --build=$ARCH-slackware-linux @@ -121,7 +120,7 @@ make make install-strip DESTDIR=$PKG mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION -cp -ar ABOUT-NLS ChangeLog COPYING Documentation INSTALL \ +cp -ar ABOUT-NLS ChangeLog COPYING Documentation \ README{,.DOS,.PORTING} TODO $PKG/usr/doc/$PRGNAM-$VERSION cat $CWD/$PRGNAM.SlackBuild > $PKG/usr/doc/$PRGNAM-$VERSION/$PRGNAM.SlackBuild rm -f $PKG/usr/doc/$PRGNAM-$VERSION/Documentation/Makefile.* |