mirror of https://github.com/nirenjan/libx52.git
20 lines
339 B
Bash
Executable File
20 lines
339 B
Bash
Executable File
#!/bin/bash
|
|
# Install dependencies to build and test on Ubuntu runners
|
|
sudo apt-get update
|
|
sudo apt-get install -y \
|
|
autoconf \
|
|
automake \
|
|
libtool \
|
|
pkg-config \
|
|
python3 \
|
|
gettext \
|
|
autopoint \
|
|
libusb-1.0-0-dev \
|
|
libhidapi-dev \
|
|
libevdev-dev \
|
|
doxygen \
|
|
libcmocka-dev \
|
|
faketime
|
|
|
|
exit 0
|