wayland

Source

FROM stagex/pallet-clang-meson-busybox AS build
ARG VERSION
COPY --from=stagex/core-expat . /
COPY --from=stagex/core-libxml2 . /
ADD fetch/wayland-${VERSION}.tar.gz .
RUN mv wayland-${VERSION}* wayland
WORKDIR /wayland
RUN --network=none <<-EOF
	meson setup \
		--prefix=/usr \
		-Ddocumentation=false \
		. output
	meson compile -C output
	DESTDIR=/rootfs meson install --no-rebuild -C output
EOF
FROM stagex/core-filesystem AS package
COPY --from=build /rootfs/ /
Copied to clipboard!