stagex/packages/pkgconf/Containerfile

35 lines
785 B
Text
Raw Normal View History

2024-02-09 07:30:28 +00:00
FROM scratch as base
ENV VERSION=1.6.3
2023-12-05 04:36:42 +00:00
ENV SRC_HASH=61f0b31b0d5ea0e862b454a80c170f57bad47879c0c42bd8de89200ff62ea210
2024-02-09 07:30:28 +00:00
ENV SRC_FILE=pkgconf-${VERSION}.tar.xz
ENV SRC_SITE=https://distfiles.ariadne.space/pkgconf/${SRC_FILE}
2023-12-16 23:50:40 +00:00
FROM base as fetch
2024-02-09 07:30:28 +00:00
ADD --checksum=sha256:${SRC_HASH} ${SRC_SITE} .
FROM fetch as build
2024-02-09 07:30:28 +00:00
COPY --from=busybox . /
COPY --from=gcc . /
COPY --from=binutils . /
COPY --from=make . /
COPY --from=musl . /
RUN tar -xf ${SRC_FILE}
WORKDIR pkgconf-${VERSION}
RUN --network=none <<-EOF
set -eux
./configure \
--prefix=/usr
make
EOF
2023-12-16 23:50:40 +00:00
FROM build as install
2024-02-09 07:30:28 +00:00
RUN --network=none <<-EOF
set -eux
make DESTDIR=/rootfs install
ln -s pkgconf /rootfs/usr/bin/pkg-config
EOF
RUN find /rootfs -exec touch -hcd "@0" "{}" +
2023-12-05 04:36:42 +00:00
2023-12-12 17:45:39 +00:00
FROM scratch as package
2023-12-16 23:50:40 +00:00
COPY --from=install /rootfs /