update dependencies
add wsjt-x to build for ft8 capabilities
This commit is contained in:
parent
95c117973f
commit
f490fbc2c9
@ -14,8 +14,8 @@ function cmakebuild() {
|
|||||||
|
|
||||||
cd /tmp
|
cd /tmp
|
||||||
|
|
||||||
STATIC_PACKAGES="libusb fftw"
|
STATIC_PACKAGES="libusb fftw udev"
|
||||||
BUILD_PACKAGES="git cmake make patch wget sudo udev gcc g++ libusb-dev fftw-dev"
|
BUILD_PACKAGES="git cmake make patch wget sudo gcc g++ libusb-dev fftw-dev"
|
||||||
|
|
||||||
apk add --no-cache $STATIC_PACKAGES
|
apk add --no-cache $STATIC_PACKAGES
|
||||||
apk add --no-cache --virtual .build-deps $BUILD_PACKAGES
|
apk add --no-cache --virtual .build-deps $BUILD_PACKAGES
|
||||||
|
@ -14,8 +14,8 @@ function cmakebuild() {
|
|||||||
|
|
||||||
cd /tmp
|
cd /tmp
|
||||||
|
|
||||||
STATIC_PACKAGES="libusb"
|
STATIC_PACKAGES="libusb udev"
|
||||||
BUILD_PACKAGES="git cmake make patch wget sudo udev gcc g++ libusb-dev"
|
BUILD_PACKAGES="git cmake make patch wget sudo gcc g++ libusb-dev"
|
||||||
|
|
||||||
apk add --no-cache $STATIC_PACKAGES
|
apk add --no-cache $STATIC_PACKAGES
|
||||||
apk add --no-cache --virtual .build-deps $BUILD_PACKAGES
|
apk add --no-cache --virtual .build-deps $BUILD_PACKAGES
|
||||||
|
@ -14,8 +14,10 @@ function cmakebuild() {
|
|||||||
|
|
||||||
cd /tmp
|
cd /tmp
|
||||||
|
|
||||||
BUILD_PACKAGES="git cmake make patch wget sudo udev gcc g++"
|
STATIC_PACKAGES="udev"
|
||||||
|
BUILD_PACKAGES="git cmake make patch wget sudo gcc g++"
|
||||||
|
|
||||||
|
apk add --no-cache $STATIC_PACKAGES
|
||||||
apk add --no-cache --virtual .build-deps $BUILD_PACKAGES
|
apk add --no-cache --virtual .build-deps $BUILD_PACKAGES
|
||||||
|
|
||||||
git clone https://github.com/pothosware/SoapySDR
|
git clone https://github.com/pothosware/SoapySDR
|
||||||
|
@ -14,8 +14,8 @@ function cmakebuild() {
|
|||||||
|
|
||||||
cd /tmp
|
cd /tmp
|
||||||
|
|
||||||
STATIC_PACKAGES="sox fftw python3 netcat-openbsd libsndfile lapack"
|
STATIC_PACKAGES="sox fftw python3 netcat-openbsd libsndfile lapack libusb qt5-qtbase qt5-qtmultimedia qt5-qtserialport"
|
||||||
BUILD_PACKAGES="git libsndfile-dev fftw-dev cmake ca-certificates make gcc musl-dev g++ lapack-dev linux-headers"
|
BUILD_PACKAGES="git libsndfile-dev fftw-dev cmake ca-certificates make gcc musl-dev g++ lapack-dev linux-headers autoconf automake libtool texinfo gfortran libusb-dev qt5-qtbase-dev qt5-qtmultimedia-dev qt5-qtserialport-dev asciidoctor asciidoc"
|
||||||
|
|
||||||
apk add --no-cache $STATIC_PACKAGES
|
apk add --no-cache $STATIC_PACKAGES
|
||||||
apk add --no-cache --virtual .build-deps $BUILD_PACKAGES
|
apk add --no-cache --virtual .build-deps $BUILD_PACKAGES
|
||||||
@ -23,7 +23,7 @@ apk add --no-cache --virtual .build-deps $BUILD_PACKAGES
|
|||||||
git clone https://git.code.sf.net/p/itpp/git itpp
|
git clone https://git.code.sf.net/p/itpp/git itpp
|
||||||
cmakebuild itpp
|
cmakebuild itpp
|
||||||
|
|
||||||
git clone https://github.com/simonyiszk/csdr.git
|
git clone https://github.com/jketterl/csdr.git -b 48khz_filter
|
||||||
cd csdr
|
cd csdr
|
||||||
patch -Np1 <<'EOF'
|
patch -Np1 <<'EOF'
|
||||||
--- a/csdr.c
|
--- a/csdr.c
|
||||||
@ -68,6 +68,8 @@ rm -rf csdr
|
|||||||
|
|
||||||
git clone https://github.com/szechyjs/mbelib.git
|
git clone https://github.com/szechyjs/mbelib.git
|
||||||
cmakebuild mbelib
|
cmakebuild mbelib
|
||||||
|
# no idea why it's put into there now. alpine does not handle it correctly, so move it.
|
||||||
|
mv /usr/local/lib64/libmbe* /usr/local/lib
|
||||||
|
|
||||||
git clone https://github.com/jketterl/digiham.git
|
git clone https://github.com/jketterl/digiham.git
|
||||||
cmakebuild digiham
|
cmakebuild digiham
|
||||||
@ -75,4 +77,10 @@ cmakebuild digiham
|
|||||||
git clone https://github.com/f4exb/dsd.git
|
git clone https://github.com/f4exb/dsd.git
|
||||||
cmakebuild dsd
|
cmakebuild dsd
|
||||||
|
|
||||||
|
WSJT_DIR=wsjtx-2.0.1
|
||||||
|
WSJT_TGZ=${WSJT_DIR}.tgz
|
||||||
|
wget http://physics.princeton.edu/pulsar/k1jt/$WSJT_TGZ
|
||||||
|
tar xvfz $WSJT_TGZ
|
||||||
|
cmakebuild $WSJT_DIR
|
||||||
|
|
||||||
apk del .build-deps
|
apk del .build-deps
|
||||||
|
Loading…
Reference in New Issue
Block a user