diff options
author | prspkt <prspkt@protonmail.com> | 2018-08-01 12:24:25 +0300 |
---|---|---|
committer | Natanael Copa <ncopa@alpinelinux.org> | 2018-09-03 05:44:58 +0000 |
commit | 92a15322b9784d2014fa60baf3fd01600edbb649 (patch) | |
tree | 87c8ac47d5a1ff1084dd501677e74f2b2c8176bf /community/mumble/APKBUILD | |
parent | 944ca379375c7cfe7d4827d349767cd81e84facf (diff) | |
download | aports-92a15322b9784d2014fa60baf3fd01600edbb649.tar.bz2 aports-92a15322b9784d2014fa60baf3fd01600edbb649.tar.xz |
community/mumble: rebuild against libprotobuf.so.17
Clarify license, use https
Diffstat (limited to 'community/mumble/APKBUILD')
-rw-r--r-- | community/mumble/APKBUILD | 15 |
1 files changed, 11 insertions, 4 deletions
diff --git a/community/mumble/APKBUILD b/community/mumble/APKBUILD index 7933dcd3ef..edef92689e 100644 --- a/community/mumble/APKBUILD +++ b/community/mumble/APKBUILD @@ -3,11 +3,11 @@ # Maintainer: Johannes Matheis <jomat+alpinebuild@jmt.gr> pkgname=mumble pkgver=1.2.19 -pkgrel=6 -pkgdesc="A low-latency, high quality voice chat software" -url="http://wiki.mumble.info" +pkgrel=7 +pkgdesc="Low-latency, high quality voice chat software" +url="https://wiki.mumble.info" arch="all" -license="BSD" +license="BSD-3-Clause" options="!check" depends="qt-sqlite" depends_dev="" @@ -24,8 +24,15 @@ builddir="$srcdir"/$pkgname-$pkgver build() { cd "$builddir" + + CXXFLAGS="-std=c++11" qmake -recursive main.pro \ CONFIG+="no-speechd no-g15 no-update no-ice bundled-celt no-embed-qt-translations no-bundled-speex" + + # qmake-qt4 ignores complation *FLAGS thus patch the Makefiles directly + sed -i "s;^\(CXXFLAGS.*=.*\);& $CXXFLAGS;" \ + */Makefile* */*/Makefile* + make release } |