60 lines
2.2 KiB
Text
60 lines
2.2 KiB
Text
# Template file for 'mumble122'
|
|
__pkgname=mumble
|
|
pkgname=${__pkgname}122
|
|
version=1.2.2
|
|
revision=4
|
|
depends="jack qt-plugin-sqlite desktop-file-utils hicolor-icon-theme"
|
|
makedepends="protobuf-devel libXi-devel qt-devel openssl-devel speex-devel
|
|
jack-devel libsndfile-devel libX11-devel alsa-lib-devel pulseaudio-devel
|
|
avahi-compat-libs-devel MesaLib-devel libogg-devel boost-devel"
|
|
short_desc="Open source, low-latency, high quality voice chat for gaming"
|
|
maintainer="davehome <davehome@redthumb.info.tm>"
|
|
license="BSD"
|
|
homepage="http://${__pkgname}.sourceforge.net/"
|
|
distfiles="${SOURCEFORGE_SITE}/${__pkgname}/${__pkgname}-${version}.tar.gz"
|
|
checksum=2c564e3d5b7481129482f2365375a2dc77e134c0c00012073cfdfbeadaa49be8
|
|
long_desc="
|
|
Mumble is a voice chat application for groups. While it can be used for any
|
|
kind of activity, it is primarily intended for gaming. It can be compared to
|
|
programs like Ventrilo or TeamSpeak. People tend to simplify things, so when
|
|
they talk about Mumble they either talk about Mumble the client application
|
|
or about Mumble and Murmur the whole voice chat application suite.
|
|
|
|
This is the old version of mumble with a patch to enable JACK support from
|
|
Filipe Coelho (falkTX) of KXStudio."
|
|
|
|
disable_parallel_build=yes
|
|
replaces="lib${__pkgname}<=1.2.3 ${__pkgname}>=0"
|
|
provides="${__pkgname}-999"
|
|
|
|
wrksrc=${__pkgname}-${version}
|
|
|
|
do_configure() {
|
|
# Needs bundled celt for some reason
|
|
qmake -recursive main.pro \
|
|
CONFIG+="no-speechd bundled-celt no-bundled-speex no-g15 \
|
|
pulseaudio no-embed-qt-translations no-update\
|
|
jackaudio no-server" \
|
|
DEFINES+="PLUGIN_PATH=/usr/lib/mumble"
|
|
}
|
|
|
|
do_build() {
|
|
make ${makejobs} release
|
|
}
|
|
|
|
do_install() {
|
|
vmkdir usr/bin
|
|
vmkdir usr/lib/mumble
|
|
vmkdir usr/share/applications
|
|
vmkdir usr/share/man/man1
|
|
vmkdir usr/share/icons/hicolor/scalable/apps
|
|
|
|
cp ${wrksrc}/release/mumble ${DESTDIR}/usr/bin
|
|
cp ${wrksrc}/release/mumble11x ${DESTDIR}/usr/bin
|
|
cp ${wrksrc}/release/*.so* ${DESTDIR}/usr/lib/mumble
|
|
cp ${wrksrc}/release/plugins/* ${DESTDIR}/usr/lib/mumble
|
|
|
|
cp ${wrksrc}/scripts/mumble.desktop ${DESTDIR}/usr/share/applications
|
|
cp ${wrksrc}/man/mumble{,11x}.1 ${DESTDIR}/usr/share/man/man1
|
|
cp ${wrksrc}/icons/mumble.svg ${DESTDIR}/usr/share/icons/hicolor/scalable/apps
|
|
}
|