desktop/mumble/PKGBUILD

67 lines
2.8 KiB
Bash
Raw Normal View History

2010-10-09 05:38:50 +08:00
pkgname=mumble
2015-06-25 01:45:30 +08:00
pkgver=1.2.9
2014-02-06 21:37:09 +08:00
pkgrel=1
2013-06-02 19:57:06 +08:00
arch=('x86_64')
2011-05-30 01:39:23 +08:00
pkgdesc="A voice chat application similar to TeamSpeak."
2014-05-20 02:24:55 +08:00
license=('BSD')
2014-08-10 03:31:28 +08:00
depends=('qt' 'speex' 'lsb-release' 'libxi' 'avahi' 'libsndfile' 'protobuf'
'libpulse' 'opus' "speech-dispatcher")
2014-02-06 21:37:09 +08:00
makedepends=('boost' 'mesa')
categories=('communication')
2014-05-20 02:24:55 +08:00
install=${pkgname}.install
2010-10-09 05:38:50 +08:00
url="http://mumble.sourceforge.net/"
screenshot="http://mumble.sourceforge.net/static/Mumble%20--%201.2.3.png"
2014-08-10 03:31:28 +08:00
source=("http://downloads.sourceforge.net/mumble/${pkgname}-${pkgver}.tar.gz"
"speech-dispatcher.patch"
"gcc49.patch::https://github.com/mumble-voip/mumble/commit/349436284b5f1baa61836c98ff0d518392140c5d.patch")
2015-06-25 01:45:30 +08:00
sha512sums=('dfd3cf620e2b65aafa55cb3d021e626d2c37683da6c31a1787a35b94254c446d1816ad4f05fa004dedeab6edd5c4696ce4ef8033f465b3d2c3cdfbfea97cf5d0'
'729894e58fe5d3020bfab8935769f14988f72c2397823dce2e8610b37ae96b8295e424befbda9148aa35e23bedf33b4c0bf64e74c199b6ea6addc90e61cb8bc2'
'17b4a2c506adddf58ed43b28cf97a256f891049bb87040e6eb9185e0174f1e827d1511e4554327b5337394356b787edf32a44e95624f9e004b35c0b1fecae0a4')
2014-08-10 03:31:28 +08:00
prepare() {
cd ${pkgname}-${pkgver}
2015-06-25 01:45:30 +08:00
# I guess it's not needed anymore, feel free to delete anyway
# patch -p1 -i "${srcdir}/gcc49.patch"
2014-08-10 03:31:28 +08:00
patch -p1 -i "${srcdir}/speech-dispatcher.patch"
}
2010-10-09 05:38:50 +08:00
build() {
2013-10-06 01:48:15 +08:00
cd ${pkgname}-${pkgver}
2010-10-09 05:38:50 +08:00
# Building mumble
2013-10-06 01:48:15 +08:00
qmake main.pro \
2014-02-06 21:37:09 +08:00
CONFIG+="bundled-celt no-bundled-opus no-bundled-speex no-speechd no-g15 no-xevie no-server \
2014-05-20 02:24:55 +08:00
no-embed-qt-translations no-update packaged" \
2011-05-30 01:39:23 +08:00
DEFINES+="PLUGIN_PATH=/usr/lib/mumble"
make release
2010-10-09 05:38:50 +08:00
}
package() {
2013-10-06 01:48:15 +08:00
cd ${pkgname}-${pkgver}
2010-10-09 05:38:50 +08:00
2011-05-30 01:39:23 +08:00
# bin stuff
2013-10-06 01:48:15 +08:00
install -m755 -D release/mumble "${pkgdir}/usr/bin/mumble"
install -m755 -D scripts/mumble-overlay "${pkgdir}/usr/bin/mumble-overlay"
2011-05-30 01:39:23 +08:00
# lib stuff
2013-10-06 01:48:15 +08:00
install -m755 -D release/libmumble.so.${pkgver} "${pkgdir}/usr/lib/mumble/libmumble.so.${pkgver}"
2012-09-07 13:39:22 +08:00
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"
2011-05-30 01:39:23 +08:00
2013-10-06 01:48:15 +08:00
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/"
2011-05-30 01:39:23 +08:00
# other stuff
2013-10-06 01:48:15 +08:00
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"
2012-09-07 13:39:22 +08:00
install -m755 -d "${pkgdir}/usr/share/man/man1"
2013-10-06 01:48:15 +08:00
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"
2010-10-09 05:38:50 +08:00
2011-05-30 01:39:23 +08:00
# License.
2013-10-06 01:48:15 +08:00
install -m644 -D LICENSE "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
2011-05-30 01:39:23 +08:00
}