From 03ff1290f250355170896f31e5b5d9a1e7bd2b91 Mon Sep 17 00:00:00 2001 From: Luigi Cruz Date: Thu, 12 Nov 2020 18:18:02 -0300 Subject: [PATCH] add dump1090 support --- builder/stage4/32-pisdr-dump1090/00-run.sh | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100755 builder/stage4/32-pisdr-dump1090/00-run.sh diff --git a/builder/stage4/32-pisdr-dump1090/00-run.sh b/builder/stage4/32-pisdr-dump1090/00-run.sh new file mode 100755 index 0000000..f82d95b --- /dev/null +++ b/builder/stage4/32-pisdr-dump1090/00-run.sh @@ -0,0 +1,14 @@ +#!/bin/bash -e + +on_chroot << EOF +mkdir -p "/home/${FIRST_USER_NAME}/PiSDR/Software" +cd "/home/${FIRST_USER_NAME}/PiSDR/Software" + +if [ ! -d "dump1090" ]; then + git clone --depth 1 https://github.com/antirez/dump1090.git +fi + +cd dump1090 +make -j$(nproc) +cp dump1090 /usr/bin/ +EOF \ No newline at end of file