network/murmur: Updated for version 1.1.4

This commit is contained in:
adev 2010-05-13 00:37:23 +02:00 committed by David Somero
parent a83168953a
commit 68007c6dba
3 changed files with 8 additions and 5 deletions

View file

@ -9,5 +9,3 @@ To run murmur at boot, add the following to /etc/rc.d/rc.local:
if [ -x /etc/rc.d/rc.murmur ]; then
/etc/rc.d/rc.murmur start
fi
Murmur requires qt4 (available on SlackBuilds.org).

View file

@ -16,10 +16,13 @@ OUTPUT=${OUTPUT:-/tmp}
if [ "$ARCH" = "i486" ]; then
SLKCFLAGS="-O2 -march=i486 -mtune=i686"
LIBDIRSUFFIX=""
elif [ "$ARCH" = "i686" ]; then
SLKCFLAGS="-O2 -march=i686 -mtune=i686"
LIBDIRSUFFIX=""
elif [ "$ARCH" = "x86_64" ]; then
SLKCFLAGS="-O2 -fPIC"
LIBDIRSUFFIX="64"
fi
set -e
@ -37,7 +40,7 @@ find . \
\( -perm 666 -o -perm 664 -o -perm 600 -o -perm 444 -o -perm 440 -o -perm 400 \) \
-exec chmod 644 {} \;
qmake-qt4 \
qmake \
main.pro \
CONFIG+=no-client
@ -66,4 +69,4 @@ cat $CWD/doinst.sh > $PKG/install/doinst.sh
cat $CWD/rc.murmur > $PKG/etc/rc.d/rc.murmur.new
cd $PKG
/sbin/makepkg -l y -c n $OUTPUT/$PRGNAM-$VERSION-$ARCH-$BUILD$TAG.tgz
/sbin/makepkg -l y -c n $OUTPUT/$PRGNAM-$VERSION-$ARCH-$BUILD$TAG.${PKGTYPE:-tgz}

View file

@ -2,7 +2,9 @@ PRGNAM="murmur"
VERSION="1.1.4"
HOMEPAGE="http://mumble.sourceforge.net/"
DOWNLOAD="http://downloads.sourceforge.net/mumble/mumble-1.1.4.tar.gz"
DOWNLOAD_x86_64=""
MD5SUM="06fdd23043fd987b2eb6b56913fac181"
MD5SUM_x86_64=""
MAINTAINER="adev"
EMAIL="adev@linuxmail.org"
APPROVED="David Somero"
APPROVED="David Somero,pprkut"