openwebrx-clone/docker/scripts/install-dependencies.sh

79 lines
1.6 KiB
Bash
Raw Normal View History

2019-01-13 14:12:09 +00:00
#!/bin/bash
2019-01-13 15:54:36 +00:00
set -euxo pipefail
2019-01-13 14:12:09 +00:00
2019-01-13 21:04:29 +00:00
function cmakebuild() {
cd $1
mkdir build
cd build
cmake ..
2019-01-22 10:35:48 +00:00
make
make install
2019-01-13 21:04:29 +00:00
cd ../..
rm -rf $1
}
2019-01-13 14:12:09 +00:00
cd /tmp
2019-06-20 12:46:04 +00:00
STATIC_PACKAGES="sox fftw python3 netcat-openbsd libsndfile lapack"
BUILD_PACKAGES="git libsndfile-dev fftw-dev cmake ca-certificates make gcc musl-dev g++ lapack-dev linux-headers"
2019-01-13 14:12:09 +00:00
apk add --no-cache $STATIC_PACKAGES
apk add --no-cache --virtual .build-deps $BUILD_PACKAGES
git clone https://git.code.sf.net/p/itpp/git itpp
cmakebuild itpp
2019-01-13 14:12:09 +00:00
git clone https://github.com/simonyiszk/csdr.git
cd csdr
patch -Np1 <<'EOF'
--- a/csdr.c
+++ b/csdr.c
@@ -38,6 +38,7 @@ SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
#include <sys/time.h>
#include <sys/types.h>
#include <sys/stat.h>
+#include <sys/select.h>
#include <fcntl.h>
#include <sys/ioctl.h>
#include <unistd.h>
diff --git a/ddcd_old.h b/ddcd_old.h
index af4cfb5..b70092b 100644
--- a/ddcd_old.h
+++ b/ddcd_old.h
@@ -19,6 +19,7 @@
#include <stdarg.h>
#include <sys/stat.h>
#include <semaphore.h>
+#include <sys/select.h>
typedef struct client_s
{
diff --git a/nmux.h b/nmux.h
index 038bc51..079e416 100644
--- a/nmux.h
+++ b/nmux.h
@@ -11,6 +11,7 @@
#include <arpa/inet.h>
#include <sys/socket.h>
#include <netinet/in.h>
+#include <sys/select.h>
#include "tsmpool.h"
#define MSG_START "nmux: "
EOF
2019-01-13 14:12:09 +00:00
make
make install
cd ..
rm -rf csdr
git clone https://github.com/szechyjs/mbelib.git
2019-01-13 21:04:29 +00:00
cmakebuild mbelib
2019-01-13 14:12:09 +00:00
git clone https://github.com/jketterl/digiham.git
2019-01-13 21:04:29 +00:00
cmakebuild digiham
2019-01-13 14:12:09 +00:00
git clone https://github.com/f4exb/dsd.git
2019-01-13 21:04:29 +00:00
cmakebuild dsd
2019-01-13 14:12:09 +00:00
apk del .build-deps