You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

18 lines
453 B

  1. #!/usr/bin/env bash
  2. _qmk_install_prepare() {
  3. sudo pkg update $SKIP_PROMPT
  4. }
  5. _qmk_install() {
  6. echo "Installing dependencies"
  7. sudo pkg install -y \
  8. git wget gmake gcc zip unzip diffutils \
  9. python3 \
  10. avr-binutils avr-gcc avr-libc \
  11. arm-none-eabi-binutils arm-none-eabi-gcc arm-none-eabi-newlib \
  12. avrdude dfu-programmer dfu-util
  13. sudo python3 -m pip install -r $QMK_FIRMWARE_DIR/requirements.txt
  14. }