Add 'mumble-snapshot/' from commit '01edd5a69414eb9fd1c5ca9fce0822845ba98018'
git-subtree-dir: mumble-snapshot git-subtree-mainline:0e7e739f94
git-subtree-split:01edd5a694
This commit is contained in:
32
mumble-snapshot/.SRCINFO
Normal file
32
mumble-snapshot/.SRCINFO
Normal file
@@ -0,0 +1,32 @@
|
||||
pkgbase = mumble-snapshot
|
||||
pkgdesc = A high quality voice chat program.
|
||||
pkgver = 1.3.0_rc2
|
||||
pkgrel = 1
|
||||
epoch = 1
|
||||
url = https://www.mumble.info/
|
||||
arch = i686
|
||||
arch = x86_64
|
||||
license = BSD
|
||||
makedepends = boost
|
||||
makedepends = qt5-tools
|
||||
makedepends = python
|
||||
makedepends = libsndfile
|
||||
makedepends = speech-dispatcher
|
||||
depends = qt5-svg
|
||||
depends = opus
|
||||
depends = speex
|
||||
depends = protobuf
|
||||
depends = hicolor-icon-theme
|
||||
depends = libspeechd
|
||||
depends = libpulse
|
||||
optdepends = espeak: speech synthesizer
|
||||
provides = mumble
|
||||
conflicts = mumble
|
||||
source = https://dl.mumble.info/mumble-1.3.0-rc2.tar.gz
|
||||
source = https://dl.mumble.info/mumble-1.3.0-rc2.tar.gz.sig
|
||||
validpgpkeys = 56D0B23AE00B1EE9A8BAAC0F5B8CF87BB893449B
|
||||
sha256sums = 258643a73997dc192ec9cc1175a55082e432ae21e4283bef27ffa331e85a0380
|
||||
sha256sums = SKIP
|
||||
|
||||
pkgname = mumble-snapshot
|
||||
|
66
mumble-snapshot/PKGBUILD
Normal file
66
mumble-snapshot/PKGBUILD
Normal file
@@ -0,0 +1,66 @@
|
||||
# Maintainer: Giovanni Harting <539@idlegandalf.com>
|
||||
# Contributor: synapse84 <synapse84 at gmail dot com>
|
||||
|
||||
pkgname=mumble-snapshot
|
||||
pkgver=1.3.0_rc2
|
||||
_dirname=1.3.0
|
||||
pkgrel=1
|
||||
# use epoch since rc naming scheme won't be recogniced as new version
|
||||
epoch=1
|
||||
pkgdesc="A high quality voice chat program."
|
||||
arch=('i686' 'x86_64')
|
||||
url="https://www.mumble.info/"
|
||||
license=('BSD')
|
||||
depends=('qt5-svg' 'opus' 'speex' 'protobuf' 'hicolor-icon-theme' 'libspeechd' 'libpulse')
|
||||
makedepends=('boost' 'qt5-tools' 'python' 'libsndfile' 'speech-dispatcher')
|
||||
optdepends=('espeak: speech synthesizer')
|
||||
provides=('mumble')
|
||||
conflicts=('mumble')
|
||||
#source=("https://dl.mumble.info/mumble-${pkgver//_/\~}~snapshot.tar.gz"{,.sig} # git snapshots
|
||||
source=("https://dl.mumble.info/mumble-${pkgver//_/-}.tar.gz"{,.sig}) # release canidate
|
||||
validpgpkeys=('56D0B23AE00B1EE9A8BAAC0F5B8CF87BB893449B')
|
||||
sha256sums=('258643a73997dc192ec9cc1175a55082e432ae21e4283bef27ffa331e85a0380'
|
||||
'SKIP')
|
||||
|
||||
build() {
|
||||
cd $srcdir/mumble-${_dirname}
|
||||
|
||||
qmake-qt5 main.pro \
|
||||
CONFIG+="bundled-celt no-bundled-opus no-bundled-speex no-g15 no-server no-embed-qt-translations no-update no-jackaudio" \
|
||||
DEFINES+="PLUGIN_PATH=/usr/lib/mumble"
|
||||
|
||||
make release
|
||||
}
|
||||
|
||||
package() {
|
||||
cd $srcdir/mumble-${_dirname}
|
||||
|
||||
# binaries
|
||||
install -m755 -D ./release/mumble $pkgdir/usr/bin/mumble
|
||||
install -m755 -D ./scripts/mumble-overlay $pkgdir/usr/bin/mumble-overlay
|
||||
|
||||
# libraries
|
||||
# mumble
|
||||
install -m755 -D ./release/libmumble.so.1.3.0 $pkgdir/usr/lib/mumble/libmumble.so.1.3.0
|
||||
ln -s libmumble.so.1.3.0 $pkgdir/usr/lib/mumble/libmumble.so
|
||||
ln -s libmumble.so.1.3.0 $pkgdir/usr/lib/mumble/libmumble.so.1
|
||||
ln -s libmumble.so.1.3.0 $pkgdir/usr/lib/mumble/libmumble.so.1.3
|
||||
# celt 11
|
||||
install -m755 -D ./release/libcelt0.so.0.11.0 $pkgdir/usr/lib/mumble/libcelt0.so.0.11.0
|
||||
ln -s libcelt0.so.0.11.0 $pkgdir/usr/lib/mumble/libcelt0.so
|
||||
ln -s libcelt0.so.0.11.0 $pkgdir/usr/lib/mumble/libcelt0.so.0
|
||||
ln -s libcelt0.so.0.11.0 $pkgdir/usr/lib/mumble/libcelt0.so.0.11
|
||||
# celt 7
|
||||
install -m755 -D ./release/libcelt0.so.0.7.0 $pkgdir/usr/lib/mumble/libcelt0.so.0.7.0
|
||||
ln -s libcelt0.so.0.7.0 $pkgdir/usr/lib/mumble/libcelt0.so.0.7
|
||||
|
||||
# plugins
|
||||
install -m755 -D ./release/plugins/*.so $pkgdir/usr/lib/mumble/
|
||||
|
||||
# other
|
||||
install -m755 -d $pkgdir/usr/share/man/man1
|
||||
install -m644 -D ./man/mumble* $pkgdir/usr/share/man/man1/
|
||||
install -m644 -D ./scripts/mumble.desktop $pkgdir/usr/share/applications/mumble.desktop
|
||||
install -m644 -D ./icons/mumble.svg $pkgdir/usr/share/icons/hicolor/scalable/apps/mumble.svg
|
||||
install -m644 -D ./LICENSE $pkgdir/usr/share/licenses/$pkgname/LICENSE
|
||||
}
|
Reference in New Issue
Block a user