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.

15 lines
464 B

  1. #!/usr/bin/env bash
  2. _qmk_install() {
  3. echo "Installing dependencies"
  4. sudo xbps-install $SKIP_PROMPT \
  5. gcc git make wget unzip zip \
  6. python3-pip \
  7. avr-binutils avr-gcc avr-libc \
  8. cross-arm-none-eabi-binutils cross-arm-none-eabi-gcc cross-arm-none-eabi-newlib \
  9. avrdude dfu-programmer dfu-util teensy_loader_cli \
  10. libusb-compat-devel
  11. python3 -m pip install --user -r $QMK_FIRMWARE_DIR/requirements.txt
  12. }