summarylogtreecommitdiffstats
diff options
context:
space:
mode:
authorThomas Lange2016-07-25 23:38:05 +0200
committerThomas Lange2016-07-25 23:38:05 +0200
commit85b7e906e9b8ef2c54cb437da73a6bf792e472ab (patch)
tree6b09374cc5e7e673441880cc64c4bf02187a029f
parentd3856d8e7273e26fd0adede531e607fe48cdef5e (diff)
downloadaur-85b7e906e9b8ef2c54cb437da73a6bf792e472ab.tar.gz
Use hooks, don't package inexistent library
https://github.com/mumble-voip/mumble/pull/2431
-rw-r--r--.SRCINFO8
-rw-r--r--PKGBUILD8
-rw-r--r--mumble.install12
3 files changed, 6 insertions, 22 deletions
diff --git a/.SRCINFO b/.SRCINFO
index a9b8fc61caf1..bb7c98d7aa1f 100644
--- a/.SRCINFO
+++ b/.SRCINFO
@@ -1,17 +1,16 @@
# Generated by mksrcinfo v8
-# Fri Dec 11 17:13:08 UTC 2015
+# Mon Jul 25 21:37:47 UTC 2016
pkgbase = mumble-git
pkgdesc = A voice chat application similar to TeamSpeak
- pkgver = 2015.12.09
+ pkgver = 2016.07.21
pkgrel = 1
url = http://wiki.mumble.info
- install = mumble.install
arch = i686
arch = x86_64
license = BSD
makedepends = boost
- makedepends = qt5-tools
makedepends = mesa
+ makedepends = qt5-tools
makedepends = git
depends = qt5-base
depends = qt5-svg
@@ -21,7 +20,6 @@ pkgbase = mumble-git
depends = protobuf
depends = libpulse
depends = opus
- depends = libxkbcommon-x11
depends = xdg-utils
depends = speech-dispatcher
provides = mumble
diff --git a/PKGBUILD b/PKGBUILD
index 9bd59736da9e..3c7696eef8fb 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -9,7 +9,7 @@
# to the depends and delete "no-g15" in the configure line below
pkgname=mumble-git
-pkgver=2015.12.09
+pkgver=2016.07.21
_pkgver=1.3.0
pkgrel=1
arch=('i686' 'x86_64')
@@ -17,11 +17,10 @@ pkgdesc='A voice chat application similar to TeamSpeak'
url='http://wiki.mumble.info'
license=('BSD')
depends=('qt5-base' 'qt5-svg' 'speex' 'lsb-release' 'avahi' 'protobuf'
- 'libpulse' 'opus' 'libxkbcommon-x11' 'xdg-utils' 'speech-dispatcher')
-makedepends=('boost' 'qt5-tools' 'mesa' 'git')
+ 'libpulse' 'opus' 'xdg-utils' 'speech-dispatcher')
+makedepends=('boost' 'mesa' 'qt5-tools' 'git')
conflicts=('mumble')
provides=('mumble')
-install=mumble.install
source=('git://github.com/mumble-voip/mumble.git' 'https://git.xiph.org/celt.git'
'git://github.com/mumble-voip/fx11.git' 'git://github.com/mumble-voip/opus.git'
'git://github.com/mumble-voip/sbcelt.git' 'https://git.xiph.org/speex.git')
@@ -71,7 +70,6 @@ package() {
ln -s libmumble.so.$_pkgver $pkgdir/usr/lib/mumble/libmumble.so.1
ln -s libmumble.so.$_pkgver $pkgdir/usr/lib/mumble/libmumble.so.${_pkgver:0:3}
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
diff --git a/mumble.install b/mumble.install
deleted file mode 100644
index ec506fa9330b..000000000000
--- a/mumble.install
+++ /dev/null
@@ -1,12 +0,0 @@
-post_install() {
- update-desktop-database -q
- xdg-icon-resource forceupdate --theme hicolor &> /dev/null
-}
-
-post_upgrade() {
- post_install
-}
-
-post_remove() {
- post_install
-}