Merge branch 'singlerider-packages/pcsc' into staging

This commit is contained in:
Lance R. Vick 2024-09-05 15:16:28 -07:00
commit 6933c97a0d
No known key found for this signature in database
GPG key ID: 8E47A1EC35A1551D
2 changed files with 10 additions and 5 deletions

View file

@ -1,7 +1,7 @@
FROM scratch AS base
ENV VERSION=2.0.0
ENV SRC_HASH=d6c3e2b64510e5ed6fcd3323febf2cc2a8e5fda5a6588c7671f2d77f9f189356
ENV SRC_FILE=pcsc-lite-${VERSION}.tar.bz2
ENV VERSION=2.2.3
ENV SRC_HASH=cab1e62755713f62ce1b567954dbb0e9a7e668ffbc3bbad3ce85c53f8f4e00a4
ENV SRC_FILE=pcsc-lite-${VERSION}.tar.xz
ENV SRC_SITE=https://pcsclite.apdu.fr/files/${SRC_FILE}
FROM base AS fetch
@ -18,10 +18,15 @@ COPY --from=stagex/make . /
COPY --from=stagex/perl . /
COPY --from=stagex/flex . /
COPY --from=stagex/pkgconf . /
COPY --from=stagex/autoconf . /
COPY --from=stagex/autoconf-archive . /
COPY --from=stagex/automake . /
COPY --from=stagex/libtool . /
RUN tar -xvf $SRC_FILE
WORKDIR /pcsc-lite-${VERSION}
RUN --network=none <<-EOF
set -eux
./bootstrap && \
./configure \
--prefix=/usr \
--sysconfdir=/etc \

View file

@ -1,6 +1,6 @@
FROM scratch AS base
ENV VERSION=1.7.1
ENV SRC_HASH=0d024b589e15d79eac8506cd67df7b53cf91e9e6a493c8319f33cd29b5f36426
ENV VERSION=1.7.2
ENV SRC_HASH=fd6fcc25e8140f613b3bf44b02eda4a8a429ee4939fb777f474e2c829f7b472c
ENV SRC_FILE=pcsc-tools-${VERSION}.tar.bz2
ENV SRC_SITE=https://pcsc-tools.apdu.fr/${SRC_FILE}