diff options
Diffstat (limited to 'system/davfs2/davfs2.SlackBuild')
-rw-r--r-- | system/davfs2/davfs2.SlackBuild | 12 |
1 files changed, 5 insertions, 7 deletions
diff --git a/system/davfs2/davfs2.SlackBuild b/system/davfs2/davfs2.SlackBuild index ff82e60f45..35c65dfaab 100644 --- a/system/davfs2/davfs2.SlackBuild +++ b/system/davfs2/davfs2.SlackBuild @@ -5,6 +5,7 @@ # Copyright (c) 2008, Justin H Haynes <justin@justinhaynes.com> # Copyright (c) 2012 Chris Abela, Malta # Copyright 2014 Ryan P.C. McQuen, WA, ryan.q@linux.com +# Copyright 2014 Chris Abela, Malta # # Permission to use, copy, modify, and/or distribute this software for any # purpose with or without fee is hereby granted, provided that the above @@ -21,7 +22,7 @@ # Modified by Robby Workman <rworkman@slackbuilds.org> PRGNAM=davfs2 -VERSION=${VERSION:-1.4.7} +VERSION=${VERSION:-1.5.2} BUILD=${BUILD:-1} TAG=${TAG:-_SBo} @@ -44,14 +45,14 @@ OUTPUT=${OUTPUT:-/tmp} # davfs2 user & group *MUST* exist before package creation # See http://slackbuilds.org/uid_gid.txt for current recomendations. -if ! grep ^$DAVFS2_GROUP: /etc/group > /dev/null 2>&1; then +if ! grep -q "^$DAVFS2_GROUP:" /etc/group; then echo "$0: Error: DAVFS2 group ($DAVFS2_GROUP) doesn't exist." echo "$0: Try creating one with: \ # groupadd -g 230 $DAVFS2_GROUP" exit 1 fi -if ! grep ^$DAVFS2_USER: /etc/passwd > /dev/null 2>&1; then +if ! grep -q "^$DAVFS2_USER:" /etc/passwd; then echo "$0: Error: DAVFS2 user ($DAVFS2_USER) doesn't exist." echo "$0: Try creating one with: \ # useradd -u 230 -d /var/cache/davfs2 -g $DAVFS2_GROUP -s /bin/false $DAVFS2_USER" @@ -102,12 +103,9 @@ CXXFLAGS="$SLKCFLAGS" \ make make install DESTDIR=$PKG -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 -# Manpages go to the wrong place regardless of configure, so we'll move them: -mv $PKG/usr/share/man $PKG/usr - # Let's not clobber the system config files mv $PKG/etc/davfs2/davfs2.conf $PKG/etc/davfs2/davfs2.conf.new mv $PKG/etc/davfs2/secrets $PKG/etc/davfs2/secrets.new |