Modify cmake configure line to fix gstreamer issues

master
Joseph Donofry 2020-09-18 13:20:30 -04:00
parent fdff292f73
commit 4c2c3f9fbc
No known key found for this signature in database
GPG Key ID: E8A1D78EF044B0CB
2 changed files with 2 additions and 3 deletions

View File

@ -1,6 +1,6 @@
pkgbase = nheko-git
pkgdesc = Desktop client for the Matrix protocol
pkgver = 0.7.2.r1888.66d63072
pkgver = 0.7.2.r1902.791a0148
pkgrel = 1
url = https://github.com/Nheko-Reborn/nheko
arch = i686

View File

@ -35,8 +35,7 @@ build() {
# build with more cores than the default
export CMAKE_BUILD_PARALLEL_LEVEL=$(cat /proc/cpuinfo | awk '/^processor/{print $3}' | wc -l)
cmake -H. -Bbuild -DHUNTER_ENABLED=ON -DBUILD_SHARED_LIBS=OFF -DUSE_BUNDLED_OPENSSL=OFF -DUSE_BUNDLED_BOOST=OFF -DUSE_BUNDLED_CMARK=OFF -DUSE_BUNDLED_JSON=OFF \
-DCMAKE_INSTALL_PREFIX=.deps/usr -DCMAKE_BUILD_TYPE=Release
cmake -H. -Bbuild -DHUNTER_ENABLED=OFF -DBUILD_SHARED_LIBS=OFF -DUSE_BUNDLED_MTXCLIENT=ON -DCMAKE_INSTALL_PREFIX=.deps/usr -DCMAKE_BUILD_TYPE=Release
cmake --build build --config Release
}