stagex/packages/libgcrypt/Containerfile

49 lines
1.2 KiB
Text
Raw Normal View History

2024-08-08 07:47:42 +00:00
FROM scratch AS base
ENV VERSION=1.10.3
2024-02-12 02:47:17 +00:00
ENV SRC_HASH=8b0870897ac5ac67ded568dcfadf45969cfa8a6beb0fd60af2a9eadc2a3272aa
ENV SRC_FILE=libgcrypt-${VERSION}.tar.bz2
2024-02-12 02:47:17 +00:00
ENV SRC_SITE=https://gnupg.org/ftp/gcrypt/libgcrypt/${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/libgpg-error . /
2024-02-12 02:47:17 +00:00
RUN tar -xvf $SRC_FILE
WORKDIR libgcrypt-${VERSION}
ENV SOURCE_DATE_EPOCH=1
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 \
--bindir=/usr/bin \
2024-02-12 02:47:17 +00:00
--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/busybox . /
2024-02-12 02:47:17 +00:00
RUN /bin/sh <<-EOF
set -eux
LIBGCRYPT_FILES_FOUND=\$(ls /usr/lib/ | grep libgcrypt || true)
if [ -z "\$LIBGCRYPT_FILES_FOUND" ]; then
echo "libgcrypt not found"
exit 1
fi
EOF
2024-08-08 07:47:42 +00:00
FROM stagex/filesystem AS package
COPY --from=install /rootfs/. /