Simplify build system

This commit is contained in:
2026-08-12 14:23:41 +09:00
parent 2ae87a3926
commit 5ae0945015
129 changed files with 161 additions and 50148 deletions

24
Dockerfile Normal file
View File

@@ -0,0 +1,24 @@
FROM archlinux:base
RUN pacman -Syu --noconfirm --needed \
diffutils \
gcc \
gtk3 \
libxcb \
libxkbcommon \
make \
pkgconf \
plan9port \
python \
wayland \
which \
xcb-imdkit \
dbus \
&& pacman -Scc --noconfirm
RUN printf "egrep='grep -E'\n" > /usr/lib/plan9/config
ENV PLAN9=/usr/lib/plan9
ENV PATH=$PATH:/usr/lib/plan9/bin
WORKDIR /src