diff options
author | Willy Sudiarto Raharjo <willysr@slackbuilds.org> | 2016-02-18 09:15:40 +0700 |
---|---|---|
committer | Willy Sudiarto Raharjo <willysr@slackbuilds.org> | 2016-02-18 09:15:40 +0700 |
commit | 2ae00a0e323c984d31c801d4af0869a2a4ca6f42 (patch) | |
tree | 608d0a85c4c2fa680016f56cad2e3210d552cbaf /libraries/libnids/libnids.SlackBuild | |
parent | b2bef49bc71b735f3011d6c81cb19b49d525893a (diff) |
libraries/libnids: Fix references.
Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
Diffstat (limited to 'libraries/libnids/libnids.SlackBuild')
-rw-r--r-- | libraries/libnids/libnids.SlackBuild | 16 |
1 files changed, 10 insertions, 6 deletions
diff --git a/libraries/libnids/libnids.SlackBuild b/libraries/libnids/libnids.SlackBuild index 1b30d30f37f9..1138f9dbd06d 100644 --- a/libraries/libnids/libnids.SlackBuild +++ b/libraries/libnids/libnids.SlackBuild @@ -25,7 +25,7 @@ PRGNAM=libnids VERSION=${VERSION:-1.24} -BUILD=${BUILD:-1} +BUILD=${BUILD:-2} TAG=${TAG:-_SBo} if [ -z "$ARCH" ]; then @@ -67,10 +67,14 @@ 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 600 -o -perm 444 -o -perm 440 -o -perm 400 \) \ - -exec chmod 644 {} \; + \( -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 {} \; + +# needed to build dsniff +# https://github.com/aol/moloch/issues/440 +patch -p1 < $CWD/libnids.patch CFLAGS="$SLKCFLAGS" \ CXXFLAGS="$SLKCFLAGS" \ @@ -83,7 +87,7 @@ CXXFLAGS="$SLKCFLAGS" \ make make install install_prefix=$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 find $PKG/usr/man -type f -exec gzip -9 {} \; |