~ruther/qmk_firmware

ref: 46d523c29a9b5d133886035738ad2419bf2fc62d qmk_firmware/util/install/void.sh -rwxr-xr-x 464 bytes
46d523c2 — Rutherther refactor: cz accent, work only with proper czech accented characters 1 year, 3 months ago
                                                                                
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
}