workaround for legacy libgpiod 1.x

This commit is contained in:
Maxim Devaev 2024-01-09 00:03:14 +02:00
parent 0676a3cee9
commit 7382b1ed12

View File

@ -95,6 +95,19 @@ RUN git clone https://github.com/pikvm/ustreamer \
&& cd - \ && cd - \
&& rm -rf ustreamer && rm -rf ustreamer
# FIXME: workaroung for legacy 1.x libgpido
RUN pacman --noconfirm --ask=4 -R libgpiod
ENV LIBGPIOD_PKG libgpiod-1.6.4
RUN curl \
-o $LIBGPIOD_PKG.tar.gz \
https://git.kernel.org/pub/scm/libs/libgpiod/libgpiod.git/snapshot/$LIBGPIOD_PKG.tar.gz \
&& tar -xzvf $LIBGPIOD_PKG.tar.gz \
&& cd $LIBGPIOD_PKG \
&& ./autogen.sh --prefix=/usr --enable-tools=yes --enable-bindings-python \
&& make PREFIX=/usr install \
&& cd - \
&& rm -rf $LIBGPIOD_PKG{,.tar.gz}
RUN mkdir -p \ RUN mkdir -p \
/etc/kvmd/{nginx,vnc} \ /etc/kvmd/{nginx,vnc} \
/var/lib/kvmd/msd \ /var/lib/kvmd/msd \