stagex/packages/libksba/Containerfile

51 lines
1.2 KiB
Text
Raw Normal View History

2024-08-08 07:47:42 +00:00
FROM scratch AS base
ENV VERSION=1.6.5
2024-02-12 02:47:17 +00:00
ENV SRC_HASH=a564628c574c99287998753f98d750babd91a4e9db451f46ad140466ef2a6d16
ENV SRC_FILE=libksba-${VERSION}.tar.bz2
2024-02-12 02:47:17 +00:00
ENV SRC_SITE=https://gnupg.org/ftp/gcrypt/libksba/${SRC_FILE}
2024-08-08 07:47:42 +00:00
FROM base AS fetch
2024-02-12 02:47:17 +00:00
ADD --checksum=sha256:${SRC_HASH} ${SRC_SITE} ${SRC_FILE}
2024-08-08 07:47:42 +00:00
FROM fetch AS build
COPY --from=stagex/busybox . /
COPY --from=stagex/musl . /
COPY --from=stagex/gcc . /
COPY --from=stagex/binutils . /
COPY --from=stagex/make . /
COPY --from=stagex/npth . /
COPY --from=stagex/libgpg-error . /
2024-02-12 02:47:17 +00:00
RUN tar -xvf $SRC_FILE
2024-08-26 01:18:52 +00:00
WORKDIR /libksba-${VERSION}
2024-02-12 02:47:17 +00:00
RUN --network=none <<-EOF
set -eux
./configure \
--build=x86_64-unknown-linux-musl \
--host=x86_64-unknown-linux-musl \
--prefix=/usr/ \
2024-02-12 02:47:17 +00:00
--bindir=/bin \
--mandir=/usr/share/man \
--infodir=/usr/share/info
make -j "$(nproc)"
2024-02-12 02:47:17 +00:00
EOF
2024-08-08 07:47:42 +00:00
FROM build AS install
2024-04-11 20:09:20 +00:00
RUN --network=none make DESTDIR=/rootfs install
2024-02-12 02:47:17 +00:00
2024-08-08 07:47:42 +00:00
FROM base AS test
COPY --from=install /rootfs/. /
COPY --from=stagex/zlib . /
COPY --from=stagex/musl . /
COPY --from=stagex/busybox . /
2024-02-12 02:47:17 +00:00
RUN /bin/sh <<-EOF
set -eux
LIBKSBA_FILES_FOUND=\$(ls /usr/lib/ | grep libksba || true)
if [ -z "\$LIBKSBA_FILES_FOUND" ]; then
echo "libksba not found"
exit 1
fi
EOF
2024-08-08 07:47:42 +00:00
FROM stagex/filesystem AS package
COPY --from=install /rootfs/. /