2019-01-13 14:12:09 +00:00
|
|
|
#!/bin/bash
|
2019-01-13 15:54:36 +00:00
|
|
|
set -euxo pipefail
|
2020-02-16 11:19:49 +00:00
|
|
|
export MAKEFLAGS="-j4"
|
2019-01-13 14:12:09 +00:00
|
|
|
|
2019-01-13 21:04:29 +00:00
|
|
|
function cmakebuild() {
|
|
|
|
cd $1
|
2019-12-29 23:11:27 +00:00
|
|
|
if [[ ! -z "${2:-}" ]]; then
|
|
|
|
git checkout $2
|
|
|
|
fi
|
2019-01-13 21:04:29 +00:00
|
|
|
mkdir build
|
|
|
|
cd build
|
2020-04-16 20:01:51 +00:00
|
|
|
cmake ${CMAKE_ARGS:-} ..
|
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
|
|
|
|
|
2020-07-21 20:51:12 +00:00
|
|
|
STATIC_PACKAGES="sox libfftw3-bin python3 python3-setuptools netcat-openbsd libsndfile1 liblapack3 libusb-1.0-0 libqt5core5a libreadline7 libgfortran4 libgomp1 libasound2 libudev1 ca-certificates libqt5gui5 libqt5sql5 libqt5printsupport5"
|
2020-05-23 20:53:12 +00:00
|
|
|
BUILD_PACKAGES="wget git libsndfile1-dev libfftw3-dev cmake make gcc g++ liblapack-dev autoconf automake libtool texinfo gfortran libusb-1.0-0-dev qtbase5-dev qtmultimedia5-dev qttools5-dev libqt5serialport5-dev qttools5-dev-tools asciidoctor asciidoc libasound2-dev pkg-config libudev-dev libhamlib-dev patch xsltproc"
|
2020-05-23 16:06:46 +00:00
|
|
|
apt-get update
|
2020-05-25 18:38:42 +00:00
|
|
|
apt-get -y install auto-apt-proxy
|
2020-05-23 20:53:12 +00:00
|
|
|
apt-get -y install --no-install-recommends $STATIC_PACKAGES $BUILD_PACKAGES
|
2019-01-22 14:52:53 +00:00
|
|
|
|
2020-05-25 18:10:03 +00:00
|
|
|
case `uname -m` in
|
|
|
|
arm*)
|
|
|
|
PLATFORM=armhf
|
|
|
|
;;
|
|
|
|
aarch64*)
|
|
|
|
PLATFORM=aarch64
|
|
|
|
;;
|
|
|
|
x86_64*)
|
|
|
|
PLATFORM=amd64
|
|
|
|
;;
|
|
|
|
esac
|
|
|
|
|
|
|
|
pushd /tmp
|
|
|
|
wget https://github.com/just-containers/s6-overlay/releases/download/v1.21.8.0/s6-overlay-${PLATFORM}.tar.gz
|
|
|
|
tar xzf s6-overlay-${PLATFORM}.tar.gz -C /
|
|
|
|
rm s6-overlay-${PLATFORM}.tar.gz
|
|
|
|
popd
|
|
|
|
|
2020-04-17 22:41:16 +00:00
|
|
|
git clone https://github.com/jketterl/js8py.git
|
|
|
|
pushd js8py
|
2020-04-19 21:42:36 +00:00
|
|
|
git checkout 888e62be375316882ad2b2ac8e396c3bf857b6fc
|
2020-04-17 22:41:16 +00:00
|
|
|
python3 setup.py install
|
|
|
|
popd
|
2020-05-23 20:53:12 +00:00
|
|
|
rm -rf js8py
|
2020-04-17 22:41:16 +00:00
|
|
|
|
2019-12-29 23:11:27 +00:00
|
|
|
git clone https://git.code.sf.net/p/itpp/git itpp
|
|
|
|
cmakebuild itpp bb5c7e95f40e8fdb5c3f3d01a84bcbaf76f3676d
|
2019-01-13 14:12:09 +00:00
|
|
|
|
2019-12-29 23:11:27 +00:00
|
|
|
git clone https://github.com/jketterl/csdr.git
|
2019-01-13 14:12:09 +00:00
|
|
|
cd csdr
|
2020-08-28 20:35:23 +00:00
|
|
|
# develop as of 2020-08-28
|
|
|
|
git checkout 6d60d8c71f3484fd502174a2af27ceaaec6e60f8
|
2020-05-22 19:25:22 +00:00
|
|
|
autoreconf -i
|
|
|
|
./configure
|
|
|
|
make
|
2019-01-13 14:12:09 +00:00
|
|
|
make install
|
|
|
|
cd ..
|
|
|
|
rm -rf csdr
|
|
|
|
|
2019-12-29 23:11:27 +00:00
|
|
|
git clone https://github.com/szechyjs/mbelib.git
|
|
|
|
cmakebuild mbelib 9a04ed5c78176a9965f3d43f7aa1b1f5330e771f
|
2019-01-13 21:04:29 +00:00
|
|
|
|
2019-12-29 23:11:27 +00:00
|
|
|
git clone https://github.com/jketterl/digiham.git
|
2020-02-18 19:58:01 +00:00
|
|
|
cmakebuild digiham 95206501be89b38d0267bf6c29a6898e7c65656f
|
2019-01-13 14:12:09 +00:00
|
|
|
|
2019-12-29 23:11:27 +00:00
|
|
|
git clone https://github.com/f4exb/dsd.git
|
|
|
|
cmakebuild dsd f6939f9edbbc6f66261833616391a4e59cb2b3d7
|
2019-01-13 14:12:09 +00:00
|
|
|
|
2020-07-22 16:45:13 +00:00
|
|
|
JS8CALL_VERSION=2.2.0
|
|
|
|
JS8CALL_DIR=js8call
|
|
|
|
JS8CALL_TGZ=js8call-${JS8CALL_VERSION}.tgz
|
2020-04-15 21:20:17 +00:00
|
|
|
wget http://files.js8call.com/${JS8CALL_VERSION}/${JS8CALL_TGZ}
|
2020-04-16 20:01:51 +00:00
|
|
|
tar xfz ${JS8CALL_TGZ}
|
2020-05-23 20:53:12 +00:00
|
|
|
# patch allows us to build against the packaged hamlib
|
2020-05-23 16:06:46 +00:00
|
|
|
patch -Np1 -d ${JS8CALL_DIR} < /js8call-hamlib.patch
|
|
|
|
rm /js8call-hamlib.patch
|
2020-07-22 16:45:13 +00:00
|
|
|
CMAKE_ARGS="-D CMAKE_CXX_FLAGS=-DJS8_USE_HAMLIB_THREE" cmakebuild ${JS8CALL_DIR}
|
2020-04-15 21:20:17 +00:00
|
|
|
rm ${JS8CALL_TGZ}
|
|
|
|
|
2020-07-21 20:51:12 +00:00
|
|
|
WSJT_DIR=wsjtx-2.2.2
|
2019-07-13 19:35:57 +00:00
|
|
|
WSJT_TGZ=${WSJT_DIR}.tgz
|
2020-04-15 21:20:17 +00:00
|
|
|
wget http://physics.princeton.edu/pulsar/k1jt/${WSJT_TGZ}
|
2020-04-16 20:01:51 +00:00
|
|
|
tar xfz ${WSJT_TGZ}
|
2020-05-25 18:31:42 +00:00
|
|
|
patch -Np0 -d ${WSJT_DIR} < /wsjtx-hamlib.patch
|
|
|
|
mv /wsjtx.patch ${WSJT_DIR}
|
2020-04-15 21:20:17 +00:00
|
|
|
cmakebuild ${WSJT_DIR}
|
|
|
|
rm ${WSJT_TGZ}
|
2019-07-13 19:35:57 +00:00
|
|
|
|
2019-12-21 20:00:43 +00:00
|
|
|
git clone --depth 1 -b 1.5 https://github.com/wb2osz/direwolf.git
|
2019-08-23 20:21:30 +00:00
|
|
|
cd direwolf
|
2020-08-14 19:08:35 +00:00
|
|
|
# hamlib is present (necessary for the wsjt-x and js8call builds) and would be used, but there's no real need.
|
|
|
|
# by setting enable_hamlib we prevent direwolf from linking to it, and it can be stripped at the end of the script.
|
|
|
|
make enable_hamlib=
|
2019-08-23 20:21:30 +00:00
|
|
|
make install
|
|
|
|
cd ..
|
|
|
|
rm -rf direwolf
|
|
|
|
|
2020-07-29 19:44:10 +00:00
|
|
|
git clone https://github.com/drowe67/codec2.git
|
|
|
|
cd codec2
|
2020-07-30 16:05:56 +00:00
|
|
|
# latest commit from master as of 2020-07-30
|
|
|
|
git checkout 1edc22e43f77fbb971429f9f7d4d8d909a7e12cb
|
2020-07-29 19:44:10 +00:00
|
|
|
mkdir build
|
|
|
|
cd build
|
|
|
|
cmake ..
|
|
|
|
make
|
|
|
|
make install
|
|
|
|
install -m 0755 src/freedv_rx /usr/local/bin
|
|
|
|
cd ../..
|
|
|
|
rm -rf codec2
|
|
|
|
|
2019-12-29 23:11:27 +00:00
|
|
|
git clone https://github.com/hessu/aprs-symbols /opt/aprs-symbols
|
|
|
|
pushd /opt/aprs-symbols
|
|
|
|
git checkout 5c2abe2658ee4d2563f3c73b90c6f59124839802
|
|
|
|
popd
|
2019-09-25 21:40:17 +00:00
|
|
|
|
2020-05-23 16:06:46 +00:00
|
|
|
apt-get -y purge --autoremove $BUILD_PACKAGES
|
|
|
|
apt-get clean
|
|
|
|
rm -rf /var/lib/apt/lists/*
|