From ab5c2aede5b64add6777039aef6a9fa860f5d48d Mon Sep 17 00:00:00 2001 From: Steffen Vogel Date: Sat, 6 Jun 2020 22:04:29 +0200 Subject: [PATCH] install libwebsockets in deps.sh --- packaging/deps.sh | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/packaging/deps.sh b/packaging/deps.sh index 7314f22bb..486dc8143 100644 --- a/packaging/deps.sh +++ b/packaging/deps.sh @@ -84,6 +84,15 @@ if [ -n "${PACKAGE}" ]; then fi popd +# Build & Install libwebsockets +git clone https://libwebsockets.org/repo/libwebsockets +mkdir -p libwebsockets/build +pushd libwebsockets/build +git checkout v4.0-stable +cmake -DCMAKE_INSTALL_LIBDIR=/usr/local/lib64 ${CMAKE_OPTS} .. +make -j$(nproc) ${TARGET} +popd + # Build & Install uldaq git clone https://github.com/stv0g/uldaq pushd uldaq