diff options
Diffstat (limited to 'games/lmpc/lmpc.SlackBuild')
-rw-r--r-- | games/lmpc/lmpc.SlackBuild | 37 |
1 files changed, 20 insertions, 17 deletions
diff --git a/games/lmpc/lmpc.SlackBuild b/games/lmpc/lmpc.SlackBuild index 81e8640cf3c98..418bdd675f269 100644 --- a/games/lmpc/lmpc.SlackBuild +++ b/games/lmpc/lmpc.SlackBuild @@ -3,6 +3,7 @@ # Slackware build script for lmpc # Copyright 2015 Dugan Chen Canada +# Copyright 2020 B. Watson # All rights reserved. # # Redistribution and use of this script, with or without modification, is @@ -22,6 +23,15 @@ # OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF # ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +# 20200416 bkw: +# - take over maintenance +# - TODO: find out what repo "1b70022" came from. It's newer than +# than the version 3.4.4 at the homepage, maybe there's even newer +# bugfix stuff? +# - i486 => i586 +# - add -j1 to make command :( +# - binaries in /usr/games + PRGNAM=lmpc VERSION=${VERSION:-1b70022} BUILD=${BUILD:-1} @@ -29,7 +39,7 @@ TAG=${TAG:-_SBo} if [ -z "$ARCH" ]; then case "$( uname -m )" in - i?86) ARCH=i486 ;; + i?86) ARCH=i586 ;; arm*) ARCH=arm ;; *) ARCH=$( uname -m ) ;; esac @@ -40,8 +50,8 @@ TMP=${TMP:-/tmp/SBo} PKG=$TMP/package-$PRGNAM OUTPUT=${OUTPUT:-/tmp} -if [ "$ARCH" = "i486" ]; then - SLKCFLAGS="-O2 -march=i486 -mtune=i686" +if [ "$ARCH" = "i586" ]; then + SLKCFLAGS="-O2 -march=i586 -mtune=i686" LIBDIRSUFFIX="" elif [ "$ARCH" = "i686" ]; then SLKCFLAGS="-O2 -march=i686 -mtune=i686" @@ -63,26 +73,20 @@ rm -rf $PRGNAM-$VERSION tar xvf $CWD/$PRGNAM-$VERSION.tar.xz 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 \ - \( -perm 666 -o -perm 664 -o -perm 640 -o -perm 600 -o -perm 444 \ - -o -perm 440 -o -perm 400 \) -exec chmod 644 {} \; +find -L . -perm /111 -a \! -perm 755 -a -exec chmod 755 {} \+ -o \ + \! -perm /111 -a \! -perm 644 -a -exec chmod 644 {} \+ sh autogen.sh CFLAGS="$SLKCFLAGS" \ CXXFLAGS="$SLKCFLAGS" \ -./configure --prefix=/usr +./configure --prefix=/usr --bindir=/usr/games -make -make install DESTDIR=$PKG +make -j1 +make install-strip DESTDIR=$PKG # These need to be installed separately. -install -m755 bin/dema $PKG/usr/bin/dema -install -m755 bin/dm2cat $PKG/usr/bin/dm2cat - -find $PKG -print0 | xargs -0 file | grep -e "executable" -e "shared object" | grep ELF \ - | cut -f 1 -d : | xargs strip --strip-unneeded 2> /dev/null || true +install -m755 bin/dema $PKG/usr/games/dema +install -m755 bin/dm2cat $PKG/usr/games/dm2cat mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION cp -a COPYING COPYING.LIB INSTALL README.base $PKG/usr/doc/$PRGNAM-$VERSION @@ -106,7 +110,6 @@ cp -a \ spec/qwd-qw/qwd.pdf \ $PKG/usr/doc/$PRGNAM-$VERSION/spec - mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION/misc cp -a spec/misc/cd.dem \ spec/misc/cd.html \ |