meson
Details
Source
FROM scratch AS build
ARG VERSION
COPY --from=stagex/core-busybox . /
COPY --from=stagex/core-musl . /
COPY --from=stagex/core-python . /
COPY --from=stagex/core-py-setuptools . /
COPY --from=stagex/core-zlib . /
ADD fetch/meson-${VERSION}.tar.gz .
WORKDIR /meson-${VERSION}
RUN <<-EOF
set -eux
python setup.py build
python setup.py install --root=/rootfs
EOF
FROM stagex/core-filesystem AS package
COPY --from=build /rootfs/ /