pcsc-tools

Source

FROM stagex/pallet-clang-gnu-busybox AS build
COPY --from=stagex/core-libxml2 . /
COPY --from=stagex/user-pcsc-lite . /
ARG VERSION
ADD fetch/pcsc-tools-${VERSION}.tar.bz2 .
WORKDIR /pcsc-tools-${VERSION}
RUN --network=none <<-EOF
	./configure \
		--prefix=/usr \
		--sysconfdir=/etc \
		--mandir=/usr/share/man \
		--localstatedir=/var
	make
	make DESTDIR=/rootfs install
EOF
FROM stagex/core-filesystem AS package
COPY --from=build /rootfs/ /
Copied to clipboard!