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

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