2020-02-08 18:01:50 +00:00
|
|
|
#!/usr/bin/env bash
|
|
|
|
set -euo pipefail
|
2020-02-16 11:19:49 +00:00
|
|
|
export MAKEFLAGS="-j4"
|
2020-02-08 18:01:50 +00:00
|
|
|
|
|
|
|
function cmakebuild() {
|
|
|
|
cd $1
|
|
|
|
if [[ ! -z "${2:-}" ]]; then
|
|
|
|
git checkout $2
|
|
|
|
fi
|
|
|
|
mkdir build
|
|
|
|
cd build
|
2020-02-08 20:05:12 +00:00
|
|
|
cmake .. ${3:-}
|
2020-02-08 18:01:50 +00:00
|
|
|
make
|
|
|
|
make install
|
|
|
|
cd ../..
|
|
|
|
rm -rf $1
|
|
|
|
}
|
|
|
|
|
|
|
|
cd /tmp
|
|
|
|
|
2020-05-23 17:59:31 +00:00
|
|
|
STATIC_PACKAGES="libusb-1.0-0 libxml2"
|
|
|
|
BUILD_PACKAGES="git libusb-1.0-0-dev cmake make gcc g++ libxml2-dev flex bison"
|
2020-02-08 18:01:50 +00:00
|
|
|
|
2020-05-23 17:59:31 +00:00
|
|
|
apt-get update
|
2020-05-23 20:53:12 +00:00
|
|
|
apt-get -y install --no-install-recommends $STATIC_PACKAGES $BUILD_PACKAGES
|
2020-02-08 18:01:50 +00:00
|
|
|
|
|
|
|
git clone https://github.com/analogdevicesinc/libiio.git
|
2020-03-29 20:48:10 +00:00
|
|
|
cmakebuild libiio 5f5af2e417129ad8f4e05fc5c1b730f0694dca12 -DCMAKE_INSTALL_PREFIX=/usr/local
|
2020-02-08 18:01:50 +00:00
|
|
|
|
|
|
|
git clone https://github.com/analogdevicesinc/libad9361-iio.git
|
|
|
|
cmakebuild libad9361-iio 8ac95f3325c18c2e34cd9cfd49c7b63d69a0a9d2
|
|
|
|
|
|
|
|
git clone https://github.com/pothosware/SoapyPlutoSDR.git
|
2020-03-29 20:48:10 +00:00
|
|
|
cmakebuild SoapyPlutoSDR c88b7f5bac1e5785f212f9a7c6ce8fef64eb719e
|
2020-02-08 18:01:50 +00:00
|
|
|
|
2020-05-23 17:59:31 +00:00
|
|
|
apt-get -y purge --autoremove $BUILD_PACKAGES
|
|
|
|
apt-get clean
|
|
|
|
rm -rf /var/lib/apt/lists/*
|