diff options
Diffstat (limited to 'development/dhex/dhex.SlackBuild')
-rw-r--r-- | development/dhex/dhex.SlackBuild | 9 |
1 files changed, 3 insertions, 6 deletions
diff --git a/development/dhex/dhex.SlackBuild b/development/dhex/dhex.SlackBuild index 7eacb8a664a5..45e02ef26027 100644 --- a/development/dhex/dhex.SlackBuild +++ b/development/dhex/dhex.SlackBuild @@ -7,7 +7,7 @@ # Licensed under the WTFPL. See http://www.wtfpl.net/txt/copying/ for details. PRGNAM=dhex -VERSION=${VERSION:-0.68} +VERSION=${VERSION:-0.69} BUILD=${BUILD:-1} TAG=${TAG:-_SBo} @@ -47,11 +47,8 @@ rm -rf ${PRGNAM}_$VERSION tar xvf $CWD/${PRGNAM}_$VERSION.tar.gz cd ${PRGNAM}_$VERSION chown -R root:root . -find -L . \ - \( -perm 777 -o -perm 775 -o -perm 750 -o -perm 711 -o -perm 555 \ - -o -perm 511 \) -exec chmod 755 {} \; -o \ - \( -perm 666 -o -perm 664 -o -perm 640 -o -perm 600 -o -perm 444 \ - -o -perm 440 -o -perm 400 \) -exec chmod 644 {} \; +find -L . -perm /111 -a \! -perm 755 -a -exec chmod 755 {} \+ -o \ + \! -perm /111 -a \! -perm 644 -a -exec chmod 644 {} \+ sed -i -e 's,-O3,'"$SLKCFLAGS"',' -e 's,share/man,man,' Makefile make LDFLAGS="-L/usr/lib$LIBDIRSUFFIX" |