mirror of
https://gitdl.cn/https://github.com/chakralinux/desktop.git
synced 2025-02-03 13:47:15 +08:00
55 lines
2.1 KiB
Bash
55 lines
2.1 KiB
Bash
# Maintainer: Michael Haesel <michael[dot]haesel[at]gmail[dot]com>
|
|
|
|
pkgname=mumble
|
|
pkgver=1.2.4
|
|
pkgrel=3
|
|
arch=('x86_64')
|
|
pkgdesc="A voice chat application similar to TeamSpeak."
|
|
license=('GPL')
|
|
depends=('qt' 'speex' 'lsb-release' 'libxi' 'avahi' 'libsndfile' 'protobuf' 'libpulse')
|
|
makedepends=('boost' 'mesa' 'avahi')
|
|
options=('!libtool')
|
|
categories=('communication')
|
|
url="http://mumble.sourceforge.net/"
|
|
screenshot="http://mumble.sourceforge.net/static/Mumble%20--%201.2.3.png"
|
|
source=("http://downloads.sourceforge.net/project/${pkgname}/${pkgname^}/${pkgver}/${pkgname}-${pkgver}.tar.gz")
|
|
sha256sums=('a1cf8383d99a02719b16c5440e3a5fb5375a8aa060f203bfa5d25bc69f919c9b')
|
|
|
|
build() {
|
|
cd ${pkgname}-${pkgver}
|
|
|
|
# Building mumble
|
|
qmake main.pro \
|
|
CONFIG+="bundled-celt no-bundled-speex no-speechd no-g15 no-xevie no-server no-embed-qt-translations packaged" \
|
|
DEFINES+="PLUGIN_PATH=/usr/lib/mumble"
|
|
make release
|
|
}
|
|
|
|
package() {
|
|
cd ${pkgname}-${pkgver}
|
|
|
|
# bin stuff
|
|
install -m755 -D release/mumble "${pkgdir}/usr/bin/mumble"
|
|
install -m755 -D scripts/mumble-overlay "${pkgdir}/usr/bin/mumble-overlay"
|
|
|
|
# lib stuff
|
|
install -m755 -D release/libmumble.so.${pkgver} "${pkgdir}/usr/lib/mumble/libmumble.so.${pkgver}"
|
|
ln -s libmumble.so.${pkgver} "${pkgdir}/usr/lib/mumble/libmumble.so"
|
|
ln -s libmumble.so.${pkgver} "${pkgdir}/usr/lib/mumble/libmumble.so.1"
|
|
ln -s libmumble.so.${pkgver} "${pkgdir}/usr/lib/mumble/libmumble.so.1.2"
|
|
|
|
install -m755 -D release/plugins/liblink.so "${pkgdir}/usr/lib/mumble/liblink.so"
|
|
install -m755 -D release/plugins/libmanual.so "${pkgdir}/usr/lib/mumble/libmanual.so"
|
|
install -m755 -D release/libcelt* "${pkgdir}/usr/lib/mumble/"
|
|
|
|
# other stuff
|
|
install -m644 -D scripts/mumble.desktop "${pkgdir}/usr/share/applications/mumble.desktop"
|
|
install -m644 -D scripts/mumble.protocol "${pkgdir}/usr/share/kde4/services/mumble.protocol"
|
|
install -m755 -d "${pkgdir}/usr/share/man/man1"
|
|
install -m644 -D man/mum* "${pkgdir}/usr/share/man/man1/"
|
|
install -m644 -D icons/mumble.svg "${pkgdir}/usr/share/icons/hicolor/scalable/apps/mumble.svg"
|
|
|
|
# License.
|
|
install -m644 -D LICENSE "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
|
|
}
|