libxdmcp
Source
FROM stagex/pallet-clang-gnu-busybox AS build
COPY --from=stagex/user-util-macros . /
COPY --from=stagex/user-xmlto . /
COPY --from=stagex/user-xorgproto . /
ARG VERSION
ADD fetch/libXdmcp-${VERSION}.tar.xz .
WORKDIR /libXdmcp-${VERSION}
RUN --network=none <<-EOF
./configure CPPFLAGS="-Darc4random_buf=my_arc4random_buf" \
--prefix=/usr \
--sysconfdir=/etc
make
make install DESTDIR=/rootfs
EOF
FROM stagex/core-filesystem AS package
COPY --from=build /rootfs/ /Copied to clipboard!