diff options
Diffstat (limited to 'network/snownews/snownews.SlackBuild')
-rw-r--r-- | network/snownews/snownews.SlackBuild | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/network/snownews/snownews.SlackBuild b/network/snownews/snownews.SlackBuild index 3c76518dec..d30967d58c 100644 --- a/network/snownews/snownews.SlackBuild +++ b/network/snownews/snownews.SlackBuild @@ -29,7 +29,7 @@ VERSION=1.5.7 ARCH=${ARCH:-i486} BUILD=${BUILD:-1} TAG=${TAG:-_SBo} -CWD=`pwd` +CWD=$(pwd) TMP=${TMP:-/tmp/SBo} PKG=$TMP/package-$PRGNAM OUTPUT=${OUTPUT:-/tmp} @@ -46,7 +46,6 @@ cd $TMP || exit 1 rm -rf $PRGNAM-$VERSION tar -zxvf $CWD/$PRGNAM-$VERSION.tar.gz || exit 1 cd $PRGNAM-$VERSION || exit 1 - chown -R root:root . chmod -R a-s,u+w,go+r-w . @@ -66,8 +65,6 @@ make install DESTDIR=$PKG || exit 1 find . | xargs file | grep "shared object" | grep ELF | cut -f 1 -d : | xargs strip --strip-unneeded 2> /dev/null ) -# Snownews ships with support for multiple languages, so this is a bit -# different method for gzipping man pages than we normally use find $PKG/usr/man -type f -name "*.?" -exec gzip -9f {} \; mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION |