Browse Source

Add development preview of CyberEther.

v7.0
Luigi F. Cruz 6 months ago
parent
commit
ee7f34b35a
2 changed files with 26 additions and 0 deletions
  1. +12
    -0
      stage4/32-pisdr-cyberether/00-packages
  2. +14
    -0
      stage4/32-pisdr-cyberether/00-run.sh

+ 12
- 0
stage4/32-pisdr-cyberether/00-packages View File

@@ -0,0 +1,12 @@
git
build-essential
cmake
pkg-config
ninja-build
meson
mesa-vulkan-drivers
libvulkan-dev
spirv-cross
glslang-tools
libglfw3-dev
libfftw3-dev

+ 14
- 0
stage4/32-pisdr-cyberether/00-run.sh View File

@@ -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 "CyberEther" ]; then
git clone --branch development --depth 1 https://github.com/luigifcruz/CyberEther.git
cd CyberEther
meson -Dbuildtype=debugoptimized build
cd build
ninja
fi
EOF

Loading…
Cancel
Save