libksba

Details
Source
FROM stagex/pallet-gcc-gnu-busybox AS build
ARG VERSION
COPY --from=stagex/user-npth . /
COPY --from=stagex/user-libgpg-error . /
ADD fetch/libksba-${VERSION}.tar.bz2 .
WORKDIR /libksba-${VERSION}
RUN --network=none <<-EOF
	set -eux
	./configure \
		--prefix=/usr/ \
		--bindir=/bin \
		--mandir=/usr/share/man \
		--infodir=/usr/share/info
	make -j "$(nproc)"
	make DESTDIR=/rootfs install
EOF
FROM stagex/core-filesystem AS package
COPY --from=build /rootfs/ /