diff options
author | Kent Fritz <fritz.kent@gmail.com> | 2019-01-18 08:29:27 +0700 |
---|---|---|
committer | Willy Sudiarto Raharjo <willysr@slackbuilds.org> | 2019-01-18 23:39:51 +0700 |
commit | 4b59de88645f852fd13e343e9f1cdf292033852f (patch) | |
tree | 2222cb9d62fe653fbfe6f0feab1105d521c2ce35 | |
parent | 5380d4f9bfb515d1314c9503e197ff6d73ac6c15 (diff) | |
download | slackbuilds-4b59de88645f852fd13e343e9f1cdf292033852f.tar.gz |
network/sipp: Updated for version 3.5.2.
Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
-rw-r--r-- | network/sipp/sipp.SlackBuild | 21 | ||||
-rw-r--r-- | network/sipp/sipp.info | 6 |
2 files changed, 16 insertions, 11 deletions
diff --git a/network/sipp/sipp.SlackBuild b/network/sipp/sipp.SlackBuild index c95a8973d3..06edad04f4 100644 --- a/network/sipp/sipp.SlackBuild +++ b/network/sipp/sipp.SlackBuild @@ -2,7 +2,7 @@ # Slackware build script for SIPp -# Copyright 2013-2014 Kent Fritz Mountain View, California, USA +# Copyright 2013-2019 Kent Fritz Mountain View, California, USA # All rights reserved. # # Redistribution and use of this script, with or without modification, is @@ -23,13 +23,13 @@ # ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. PRGNAM=sipp -VERSION=${VERSION:-3.4.1} +VERSION=${VERSION:-3.5.2} BUILD=${BUILD:-1} TAG=${TAG:-_SBo} if [ -z "$ARCH" ]; then case "$( uname -m )" in - i?86) ARCH=i486 ;; + i?86) ARCH=i586 ;; arm*) ARCH=arm ;; *) ARCH=$( uname -m ) ;; esac @@ -40,8 +40,8 @@ TMP=${TMP:-/tmp/SBo} PKG=$TMP/package-$PRGNAM OUTPUT=${OUTPUT:-/tmp} -if [ "$ARCH" = "i486" ]; then - SLKCFLAGS="-O2 -march=i486 -mtune=i686" +if [ "$ARCH" = "i586" ]; then + SLKCFLAGS="-O2 -march=i586 -mtune=i686" LIBDIRSUFFIX="" elif [ "$ARCH" = "i686" ]; then SLKCFLAGS="-O2 -march=i686 -mtune=i686" @@ -60,7 +60,7 @@ rm -rf $PKG mkdir -p $TMP $PKG $OUTPUT cd $TMP rm -rf $PRGNAM-$VERSION -tar xvf $CWD/$PRGNAM-$VERSION.tar.gz || tar xvf $CWD/v$VERSION.tar.gz +tar xvf $CWD/$PRGNAM-$VERSION.tar.gz cd $PRGNAM-$VERSION chown -R root:root . find -L . \ @@ -79,8 +79,10 @@ CXXFLAGS="$SLKCFLAGS" \ --mandir=/usr/man \ --docdir=/usr/doc/$PRGNAM-$VERSION \ --build=$ARCH-slackware-linux \ + --with-gsl \ --with-openssl \ - --with-pcap + --with-pcap \ + --with-rtpstream make make install DESTDIR=$PKG @@ -88,11 +90,14 @@ make install DESTDIR=$PKG 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 {} \; +for i in $( find $PKG/usr/man -type l ) ; do ln -s $( readlink $i ).gz $i.gz ; rm $i ; done + mkdir -p $PKG/usr/share/$PRGNAM/pcap cp -a pcap/* $PKG/usr/share/$PRGNAM/pcap mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION -cp -a README.md LICENSE.txt THANKS $PKG/usr/doc/$PRGNAM-$VERSION +cp -a README.md LICENSE.txt THANKS CHANGES.md FAQ.md $PKG/usr/doc/$PRGNAM-$VERSION cat $CWD/$PRGNAM.SlackBuild > $PKG/usr/doc/$PRGNAM-$VERSION/$PRGNAM.SlackBuild mkdir -p $PKG/install diff --git a/network/sipp/sipp.info b/network/sipp/sipp.info index 1e825cb405..79b08686dd 100644 --- a/network/sipp/sipp.info +++ b/network/sipp/sipp.info @@ -1,8 +1,8 @@ PRGNAM="sipp" -VERSION="3.4.1" +VERSION="3.5.2" HOMEPAGE="http://sipp.sourceforge.net" -DOWNLOAD="https://github.com/SIPp/sipp/archive/v3.4.1.tar.gz" -MD5SUM="f6187768bd68a9d9a8ccf4393a9de7fb" +DOWNLOAD="https://github.com/SIPp/sipp/releases/download/v3.5.2/sipp-3.5.2.tar.gz" +MD5SUM="604df972c6ed3ddc598b2b83d7a8ddad" DOWNLOAD_x86_64="" MD5SUM_x86_64="" REQUIRES="" |