From bd1a15f3c99b7e57dd62d38c58118fbb77765a7a Mon Sep 17 00:00:00 2001 From: Jakob Ketterl Date: Fri, 4 Aug 2023 16:44:23 +0200 Subject: [PATCH] fix dependencies --- docker/scripts/install-connectors.sh | 3 ++- docker/scripts/install-dependencies-runds.sh | 4 ++-- 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/docker/scripts/install-connectors.sh b/docker/scripts/install-connectors.sh index e96a67ff..d950a4be 100755 --- a/docker/scripts/install-connectors.sh +++ b/docker/scripts/install-connectors.sh @@ -18,10 +18,11 @@ function cmakebuild() { cd /tmp +STATIC_PACKAGES="libfftw3-bin" BUILD_PACKAGES="git cmake make gcc g++ libsamplerate-dev libfftw3-dev" apt-get update -apt-get -y install --no-install-recommends $BUILD_PACKAGES +apt-get -y install --no-install-recommends $STATIC_PACKAGES $BUILD_PACKAGES git clone https://github.com/jketterl/owrx_connector.git # latest develop as of 2023-08-04 (direct_sampling for rtl_tcp_connector) diff --git a/docker/scripts/install-dependencies-runds.sh b/docker/scripts/install-dependencies-runds.sh index 1723bb44..6e337175 100755 --- a/docker/scripts/install-dependencies-runds.sh +++ b/docker/scripts/install-dependencies-runds.sh @@ -18,8 +18,8 @@ function cmakebuild() { cd /tmp -STATIC_PACKAGES="" -BUILD_PACKAGES="git cmake make gcc g++ pkg-config" +STATIC_PACKAGES="libfftw3-bin" +BUILD_PACKAGES="git cmake make gcc g++ pkg-config libfftw3-dev" apt-get update apt-get -y install --no-install-recommends $STATIC_PACKAGES $BUILD_PACKAGES