blob: 6aeb8e00aedfc5e6479e278c06bbb2a3e922f814 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
#!/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
}
|