Source

FROM stagex/pallet-clang-gnu-busybox AS build
COPY --from=stagex/user-libxdmcp . /
COPY --from=stagex/core-libxslt . /
COPY --from=stagex/user-xorgproto . /
COPY --from=stagex/user-libxau . /
COPY --from=stagex/user-libsm . /
COPY --from=stagex/user-libx11 . /
COPY --from=stagex/core-libxslt . /
COPY --from=stagex/user-libxcb . /
COPY --from=stagex/user-util-macros . /
COPY --from=stagex/user-util-linux . /
COPY --from=stagex/user-libice . /
ARG VERSION
ADD fetch/libXt-${VERSION}.tar.xz .
WORKDIR /libXt-${VERSION}
RUN --network=none <<-EOF
	./configure \
		--prefix=/usr \
		--sysconfdir=/etc \
		--disable-static
	make
	make install DESTDIR=/rootfs
EOF
FROM stagex/core-filesystem AS package
COPY --from=build /rootfs/ /
Copied to clipboard!