diff options
author | Grigorios Bouzakis <grbzks@gmail.com> | 2010-05-12 17:44:13 +0200 |
---|---|---|
committer | Robby Workman <rworkman@slackbuilds.org> | 2010-05-12 17:44:13 +0200 |
commit | 67c26eccbfc3bae6a022b4d3d500e3ac343874ee (patch) | |
tree | de21921f5996b1cf5634085aa086437e646d1e03 /network/snownews/snownews.SlackBuild | |
parent | 253331a788c0b5f75ac7854310db12ad82b35b40 (diff) | |
download | slackbuilds-67c26eccbfc3bae6a022b4d3d500e3ac343874ee.tar.gz |
network/snownews: Updated for version 1.5.11
Diffstat (limited to 'network/snownews/snownews.SlackBuild')
-rw-r--r-- | network/snownews/snownews.SlackBuild | 13 |
1 files changed, 8 insertions, 5 deletions
diff --git a/network/snownews/snownews.SlackBuild b/network/snownews/snownews.SlackBuild index cb4c15a712..244623e042 100644 --- a/network/snownews/snownews.SlackBuild +++ b/network/snownews/snownews.SlackBuild @@ -4,7 +4,7 @@ # Written by Grigorios Bouzakis (grbzks@gmail.com) PRGNAM=snownews -VERSION=${VERSION:-1.5.10} +VERSION=${VERSION:-1.5.11} ARCH=${ARCH:-i486} BUILD=${BUILD:-1} TAG=${TAG:-_SBo} @@ -45,8 +45,10 @@ make make install DESTDIR=$PKG ( cd $PKG - find . | xargs file | grep "executable" | grep ELF | cut -f 1 -d : | xargs strip --strip-unneeded 2> /dev/null || true - find . | xargs file | grep "shared object" | grep ELF | cut -f 1 -d : | xargs strip --strip-unneeded 2> /dev/null + find . | xargs file | grep "executable" | grep ELF | cut -f 1 -d : | \ + xargs strip --strip-unneeded 2> /dev/null || true + find . | xargs file | grep "shared object" | grep ELF | cut -f 1 -d : | \ + xargs strip --strip-unneeded 2> /dev/null ) mv $PKG/usr/share/man $PKG/usr @@ -57,8 +59,9 @@ mv $PKG/usr/share/man $PKG/usr ) mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION -cp -a AUTHOR COPYING CREDITS Changelog INSTALL README README.de README.patching \ - $PKG/usr/doc/$PRGNAM-$VERSION +cp -a \ + AUTHOR COPYING CREDITS Changelog INSTALL README README.de README.patching \ + $PKG/usr/doc/$PRGNAM-$VERSION cat $CWD/$PRGNAM.SlackBuild > $PKG/usr/doc/$PRGNAM-$VERSION/$PRGNAM.SlackBuild mkdir -p $PKG/install |