diff options
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 |