您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符
 
 
 
 
 

19 行
792 B

  1. #!/usr/bin/env bash
  2. # This script only works on Debian Bullseye
  3. # If you have docker this is trivially easy:
  4. # docker run -v $(pwd):/aptdec:z -w /aptdec debian:11 ./build_arm.sh
  5. apt-get update
  6. apt-get install -y debootstrap cmake gcc-arm-linux-gnueabihf git
  7. # Prepare armhf root environment
  8. if [ ! -d root ]; then
  9. debootstrap --keyring=/usr/share/keyrings/debian-archive-keyring.gpg --arch=armhf --include=libsndfile1-dev,libpng-dev --download-only bullseye root http://deb.debian.org/debian/
  10. for i in root/var/cache/apt/archives/*.deb; do dpkg -x "$i" root; done
  11. fi
  12. # Build aptdec
  13. cmake -B build -DCMAKE_BUILD_TYPE=Release -DCMAKE_TOOLCHAIN_FILE=cmake/toolchain-armhf.cmake -DCMAKE_INSTALL_PREFIX=/aptdec/root
  14. cmake --build build -j$(nproc)
  15. cmake --build build --target package