network/mangler: Updated for version 1.2.5.
Signed-off-by: Niels Horn <niels.horn@slackbuilds.org>
This commit is contained in:
parent
449bb688fd
commit
c8986b7bf1
|
@ -2,4 +2,4 @@ Mangler is an open source VOIP client capable of connecting to
|
|||
Ventrilo 3.x servers. It is capable of performing almost all
|
||||
standard user functionality found in a Windows Ventrilo client.
|
||||
|
||||
Optional dependencies include espeak, g15tools, and celt.
|
||||
Optional dependencies include espeak and g15tools.
|
||||
|
|
|
@ -2,7 +2,7 @@
|
|||
|
||||
# Slackware build script for Mangler
|
||||
|
||||
# Copyright 2010 James Geboski <jgeboski@gmail.com>
|
||||
# Copyright 2010-2013 James Geboski <jgeboski@gmail.com>
|
||||
# All rights reserved.
|
||||
#
|
||||
# Redistribution and use of this script, with or without modification, is
|
||||
|
@ -23,7 +23,7 @@
|
|||
# ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
||||
|
||||
PRGNAM=mangler
|
||||
VERSION=${VERSION:-1.2.2}
|
||||
VERSION=${VERSION:-1.2.5}
|
||||
BUILD=${BUILD:-1}
|
||||
TAG=${TAG:-_SBo}
|
||||
|
||||
|
@ -74,6 +74,7 @@ CXXFLAGS="$SLKCFLAGS" \
|
|||
./configure \
|
||||
--prefix=/usr \
|
||||
--libdir=/usr/lib${LIBDIRSUFFIX} \
|
||||
--mandir=/usr/man \
|
||||
--build=$ARCH-slackware-linux
|
||||
|
||||
make
|
||||
|
@ -82,6 +83,9 @@ make install DESTDIR=$PKG
|
|||
find $PKG | xargs 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/install
|
||||
cat $CWD/slack-desc > $PKG/install/slack-desc
|
||||
cat $CWD/doinst.sh > $PKG/install/doinst.sh
|
||||
|
|
|
@ -1,10 +1,10 @@
|
|||
PRGNAM="mangler"
|
||||
VERSION="1.2.2"
|
||||
VERSION="1.2.5"
|
||||
HOMEPAGE="http://www.mangler.org/"
|
||||
DOWNLOAD="http://www.mangler.org/downloads/mangler-1.2.2.tar.bz2"
|
||||
MD5SUM="b9f5506c4ab172d39d43c5edc8a4a950"
|
||||
DOWNLOAD="http://www.mangler.org/downloads/mangler-1.2.5.tar.bz2"
|
||||
MD5SUM="28bb40c91d8e778a95a0845f858be503"
|
||||
DOWNLOAD_x86_64=""
|
||||
MD5SUM_x86_64=""
|
||||
REQUIRES="jdk gsm gtkmm speex"
|
||||
REQUIRES="jdk gsm gtkmm opus speex"
|
||||
MAINTAINER="James Geboski"
|
||||
EMAIL="jgeboski@gmail.com"
|
||||
|
|
Loading…
Reference in New Issue