diff options
author | Pablo Santamaria <pablosantamaria@gmail.com> | 2012-07-29 23:53:07 -0500 |
---|---|---|
committer | Robby Workman <rworkman@slackbuilds.org> | 2012-07-29 23:53:07 -0500 |
commit | c1986a4f498b5472277bc7174b591c37efe866d2 (patch) | |
tree | 83ceb56dfcd5b0a3c43ae2ca383ed981017b01ff /games/zdoom/zdoom.SlackBuild | |
parent | 466d3d7b6c66b11109753a57d0b175a283bc85a3 (diff) |
games/zdoom: Updated for version 2.6.0.
Signed-off-by: Robby Workman <rworkman@slackbuilds.org>
Diffstat (limited to 'games/zdoom/zdoom.SlackBuild')
-rw-r--r-- | games/zdoom/zdoom.SlackBuild | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/games/zdoom/zdoom.SlackBuild b/games/zdoom/zdoom.SlackBuild index 6a172bc3be3f..760d748b1fbb 100644 --- a/games/zdoom/zdoom.SlackBuild +++ b/games/zdoom/zdoom.SlackBuild @@ -5,7 +5,7 @@ # Written by Pablo Santamaria (pablosantamaria@gmail.com) PRGNAM=zdoom -VERSION=${VERSION:-2.5.0} +VERSION=${VERSION:-2.6.0} BUILD=${BUILD:-1} TAG=${TAG:-_SBo} @@ -75,8 +75,8 @@ install -m644 $CWD/zdoom.desktop $PKG/usr/share/applications/ cd .. -find $PKG | xargs file | grep -e "executable" -e "shared object" | grep ELF \ - | cut -f 1 -d : | xargs strip --strip-unneeded 2> /dev/null || true +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 mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION cp -a docs/* $PKG/usr/doc/$PRGNAM-$VERSION |