diff options
author | B. Watson <yalhcru@gmail.com> | 2014-03-23 14:13:55 -0500 |
---|---|---|
committer | Erik Hanson <erik@slackbuilds.org> | 2014-04-12 13:58:34 -0500 |
commit | 174ae28f0e3f1c19e44fe77eab1097dea35e5659 (patch) | |
tree | 86c4fb2d521731f00d70fe951b8d71dbed77e975 /games/doomseeker/doomseeker.SlackBuild | |
parent | d34737a1b3a0e0d01c285c0abe21984f7fe697f9 (diff) | |
download | slackbuilds-174ae28f0e3f1c19e44fe77eab1097dea35e5659.tar.gz |
games/doomseeker: Updated for version 0.11.1b.
Signed-off-by: Erik Hanson <erik@slackbuilds.org>
Diffstat (limited to 'games/doomseeker/doomseeker.SlackBuild')
-rw-r--r-- | games/doomseeker/doomseeker.SlackBuild | 13 |
1 files changed, 7 insertions, 6 deletions
diff --git a/games/doomseeker/doomseeker.SlackBuild b/games/doomseeker/doomseeker.SlackBuild index 19d3e38337..bdbaeb5aae 100644 --- a/games/doomseeker/doomseeker.SlackBuild +++ b/games/doomseeker/doomseeker.SlackBuild @@ -7,7 +7,7 @@ # Licensed under the WTFPL. See http://www.wtfpl.net/txt/copying/ for details. PRGNAM=doomseeker -VERSION=${VERSION:-0.10b} +VERSION=${VERSION:-0.11.1b} BUILD=${BUILD:-1} TAG=${TAG:-_SBo} @@ -69,11 +69,11 @@ cd build cd .. # Shared lib gets installed to wrong place, easier to fix it here than patch. -# Also note, doomseeker violates the FHS by placing shared objects in /usr/share -# (but I won't try to fix that). -if [ "$LIBDIRSUFFIX" != "" ]; then - mv $PKG/usr/lib $PKG/usr/lib$LIBDIRSUFFIX -fi +# Also note, doomseeker violates the FHS by placing shared objects in /usr/share. +# I won't try to fix that, but I will strip them. +[ "$LIBDIRSUFFIX" != "" ] && mv $PKG/usr/lib $PKG/usr/lib$LIBDIRSUFFIX +chmod 755 $PKG/usr/share/$PRGNAM/engines/*.so +strip $PKG/usr/share/$PRGNAM/engines/*.so # Fix the .desktop file sed -i \ @@ -88,6 +88,7 @@ mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION # Not only do they not ship docs, there aren't really any on their # web site, either. At least the GUI's easy to figure out. +chmod -x LICENSE* cp -a LICENSE* $PKG/usr/doc/$PRGNAM-$VERSION cat $CWD/$PRGNAM.SlackBuild > $PKG/usr/doc/$PRGNAM-$VERSION/$PRGNAM.SlackBuild |