gperf
Source
FROM stagex/pallet-clang-gnu-busybox AS build
ARG VERSION
ADD fetch/gperf-${VERSION}.tar.gz .
WORKDIR /gperf-${VERSION}
RUN --network=none <<EOF
./configure
make
DESTDIR=/rootfs make install
EOF
FROM stagex/core-filesystem AS package
COPY --from=build /rootfs/ /Copied to clipboard!