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