summaryrefslogtreecommitdiffstats
path: root/games/fceux/fceux.SlackBuild
diff options
context:
space:
mode:
Diffstat (limited to 'games/fceux/fceux.SlackBuild')
-rw-r--r--games/fceux/fceux.SlackBuild37
1 files changed, 19 insertions, 18 deletions
diff --git a/games/fceux/fceux.SlackBuild b/games/fceux/fceux.SlackBuild
index 6412ac1b53..af96722a1a 100644
--- a/games/fceux/fceux.SlackBuild
+++ b/games/fceux/fceux.SlackBuild
@@ -2,7 +2,7 @@
# Slackware build script for fceux
-# Copyright 2013 Matt Dinslage (daedra1980@gmail.com), Springfield, MO, USA
+# Copyright 2016 Matt Dinslage (daedra1980@gmail.com), Springfield, MO, USA
# All rights reserved.
#
# Redistribution and use of this script, with or without modification, is
@@ -24,8 +24,8 @@
PRGNAM=fceux
-VERSION=${VERSION:-2.2.2}
-BUILD=${BUILD:-2}
+VERSION=${VERSION:-2.2.3}
+BUILD=${BUILD:-1}
TAG=${TAG:-_SBo}
if [ -z "$ARCH" ]; then
@@ -55,7 +55,7 @@ else
LIBDIRSUFFIX=""
fi
-set -e
+set -e
rm -rf $PKG
mkdir -p $TMP $PKG $OUTPUT
@@ -65,24 +65,27 @@ tar xvf $CWD/$PRGNAM-$VERSION.src.tar.?z*
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 600 -o -perm 444 -o -perm 440 -o -perm 400 \) \
- -exec chmod 644 {} \;
+ \( -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 {} \;
-# Set our CFLAGS, move man pages
+# Set our CFLAGS, move man pages, disable debub symbols
sed -i \
-e "s|'-Wall'|${SLKCFLAGS}, '-Wall'|" \
- -e "s|/share/man/man6/fceux.6|/man/man6/fceux.6|" \
- -e "s|/share/man/man6/fceux-net-server.6|/man/man6/fceux-net-server.6|" \
+ -e "s|/share/man/man6/|/man/man6/|" \
+ -e "s|/share/man/man6/|/man/man6/|" \
+ -e "s|symbols', 1|symbols', 0|" \
+ -e "s|release', 0|release', 1|" \
SConstruct
scons install -i --prefix=$PKG/usr
-#scons install creates usr/share/pixmaps as a regular file, delete that.
-rm -f $PKG/usr/share/pixmaps
+# Delete low res icon and replace below, also delete unneeded .dll files
+rm -f $PKG/usr/share/pixmaps/fceux.png
+rm -f $PKG/usr/share/$PRGNAM/*.dll
-find $PKG | xargs file | grep -e "executable" -e "shared object" | grep ELF \
+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
find $PKG/usr/man -type f -exec gzip -9 {} \;
@@ -92,10 +95,8 @@ mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION
cp -a documentation/* COPYING *.txt $PKG/usr/doc/$PRGNAM-$VERSION
cat $CWD/$PRGNAM.SlackBuild > $PKG/usr/doc/$PRGNAM-$VERSION/$PRGNAM.SlackBuild
-#Add icon and application launcher
-mkdir -p $PKG/usr/share/applications $PKG/usr/share/pixmaps
-cat $CWD/$PRGNAM.desktop > $PKG/usr/share/applications/$PRGNAM.desktop
-cat $CWD/Nintendo.png > $PKG/usr/share/pixmaps/Nintendo.png
+#Add icon
+cat $CWD/fceux.png > $PKG/usr/share/pixmaps/fceux.png
mkdir -p $PKG/install
cat $CWD/slack-desc > $PKG/install/slack-desc