소스 검색

Add development preview of CyberEther.

v7.0
Luigi F. Cruz 7 달 전
부모
커밋
ee7f34b35a
2개의 변경된 파일26개의 추가작업 그리고 0개의 파일을 삭제
  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 파일 보기

@@ -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 파일 보기

@@ -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

불러오는 중...
취소
저장