diff options
author | B. Watson <yalhcru@gmail.com> | 2018-10-01 02:41:59 -0400 |
---|---|---|
committer | Willy Sudiarto Raharjo <willysr@slackbuilds.org> | 2018-10-21 06:47:11 +0700 |
commit | 227999748fb48e22347e96cff8d65994ac158b35 (patch) | |
tree | ec6a76540b06a9162ed43887bb3c0f95f9597932 /development/xtruss/xtruss.SlackBuild | |
parent | a8804754f13357f31ccf20f60833f52ff1d85029 (diff) | |
download | slackbuilds-227999748fb48e22347e96cff8d65994ac158b35.tar.gz |
development/xtruss: Updated for version 20181001.82973f5.
Signed-off-by: B. Watson <yalhcru@gmail.com>
Diffstat (limited to 'development/xtruss/xtruss.SlackBuild')
-rw-r--r-- | development/xtruss/xtruss.SlackBuild | 11 |
1 files changed, 5 insertions, 6 deletions
diff --git a/development/xtruss/xtruss.SlackBuild b/development/xtruss/xtruss.SlackBuild index 9fbea5fecb..894639819e 100644 --- a/development/xtruss/xtruss.SlackBuild +++ b/development/xtruss/xtruss.SlackBuild @@ -5,8 +5,10 @@ # Written by V'yacheslav Stetskevych # Modified by B. Watson +# Licensed under the WTFPL. See http://www.wtfpl.net/txt/copying/ for details. + PRGNAM=xtruss -VERSION=${VERSION:-20150926.f43ba98} +VERSION=${VERSION:-20181001.82973f5} BUILD=${BUILD:-1} TAG=${TAG:-_SBo} @@ -46,11 +48,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 {} \+ CFLAGS="$SLKCFLAGS" \ CXXFLAGS="$SLKCFLAGS" \ |