2019-01-24 16:24:15 +00:00
|
|
|
#!/bin/bash
|
|
|
|
set -euxo pipefail
|
|
|
|
|
|
|
|
function cmakebuild() {
|
|
|
|
cd $1
|
2019-12-29 23:11:27 +00:00
|
|
|
if [[ ! -z "${2:-}" ]]; then
|
|
|
|
git checkout $2
|
|
|
|
fi
|
2019-01-24 16:24:15 +00:00
|
|
|
mkdir build
|
|
|
|
cd build
|
|
|
|
cmake ..
|
|
|
|
make
|
|
|
|
make install
|
|
|
|
cd ../..
|
|
|
|
rm -rf $1
|
|
|
|
}
|
|
|
|
|
|
|
|
cd /tmp
|
|
|
|
|
2019-07-13 19:35:57 +00:00
|
|
|
STATIC_PACKAGES="libusb fftw udev"
|
|
|
|
BUILD_PACKAGES="git cmake make patch wget sudo gcc g++ libusb-dev fftw-dev"
|
2019-01-24 16:24:15 +00:00
|
|
|
|
|
|
|
apk add --no-cache $STATIC_PACKAGES
|
|
|
|
apk add --no-cache --virtual .build-deps $BUILD_PACKAGES
|
|
|
|
|
2019-12-29 23:11:27 +00:00
|
|
|
git clone https://github.com/mossmann/hackrf.git
|
2019-01-24 16:24:15 +00:00
|
|
|
cd hackrf
|
2019-12-29 23:11:27 +00:00
|
|
|
git checkout 06eb9192cd348083f5f7de9c0da9ead276020011
|
2019-01-24 16:24:15 +00:00
|
|
|
cmakebuild host
|
|
|
|
cd ..
|
|
|
|
rm -rf hackrf
|
|
|
|
|
|
|
|
apk del .build-deps
|