diff options
author | Ryan P.C. McQuen <ryanpcmcquen@gmail.com> | 2014-07-23 07:25:58 +0700 |
---|---|---|
committer | Willy Sudiarto Raharjo <willysr@slackbuilds.org> | 2014-07-23 07:25:58 +0700 |
commit | 58ceccae356ada5e0c1b32a11a07e0cc29c606c0 (patch) | |
tree | 49620f77a3dad19862143b014fd0146c8637f621 /games/nsudoku/nsudoku.SlackBuild | |
parent | e364a50744bb7c13502452cbeda6e809ae69700c (diff) |
games/nsudoku: New maintainer.
Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
Diffstat (limited to 'games/nsudoku/nsudoku.SlackBuild')
-rw-r--r-- | games/nsudoku/nsudoku.SlackBuild | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/games/nsudoku/nsudoku.SlackBuild b/games/nsudoku/nsudoku.SlackBuild index 779140dcbd619..54dfa0a7897eb 100644 --- a/games/nsudoku/nsudoku.SlackBuild +++ b/games/nsudoku/nsudoku.SlackBuild @@ -1,5 +1,9 @@ #!/bin/sh +# Slackware build script for nsudoku + +# Ryan P.C. McQuen | Everett, WA | ryan.q@linux.com + # Copyright 2010, 2012 Binh Nguyen <binhvng@gmail.com> # All rights reserved. # @@ -51,7 +55,7 @@ cd $PRGNAM-$VERSION gcc -lncurses -o $PRGNAM $PRGNAM.c install -Dm755 $PRGNAM $PKG/usr/bin/$PRGNAM -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 mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION |