xtrans

Source

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