blob: e1e4696ba18acd9de25e7e90959561e5230f7f38 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
|
FROM greyltc/archlinux-aur:yay
# Install base dependencies
RUN pacman --noconfirm -Sy fakeroot binutils make
# Install OpenGamepadUI dependencies
RUN pacman --noconfirm -S \
libx11 \
libxres \
libxcb \
libxext \
libxau \
libxdmcp \
gamescope \
vulkan-tools \
mesa-utils \
godot \
scons \
pkgconf \
gcc \
libxinerama \
glu \
alsa-lib \
unzip \
wget \
git
RUN aur-install inputplumber-bin
RUN mkdir /home/build && chmod 777 /home/build
|