Add TAPTOOLS

This commit is contained in:
2026-02-23 12:31:47 +00:00
parent f2510aedc2
commit 91e987b972
3 changed files with 29 additions and 8 deletions

View File

@@ -7,6 +7,7 @@ RUN apt-get update \
automake \
build-essential \
fpc \
libdsk4-dev \
make \
python3-pip \
unzip \
@@ -38,6 +39,11 @@ RUN cd /hdfmonkey/ \
ADD https://github.com/pleumann/pasta80.git#v0.96 /opt/pasta80
RUN cd /opt/pasta80 \
&& fpc pasta
ADD --unpack https://www.seasip.info/ZX/taptools-1.1.3.tar.gz taptools/
RUN cd taptools/taptools* \
&& ./configure \
&& make -j8 \
&& make install
FROM ubuntu:24.04 AS z88dk
RUN apt-get update \
@@ -90,6 +96,8 @@ RUN apt-get update \
ca-certificates \
fuse-emulator-utils \
git \
libdsk4 \
libdsk-utils \
m4 \
make \
openssh-client \
@@ -99,7 +107,6 @@ RUN apt-get update \
z80dasm \
zmakebas \
&& rm -rf /var/lib/apt/lists/*
COPY --from=build /usr/local/bin/sjasmplus /bin/sjasmplus
COPY --from=build /ttttt/ttttt /bin/ttttt
COPY --from=build /zx0/src/zx0 /bin/zx0
COPY --from=build /zx0/src/dzx0 /bin/dzx0
@@ -111,7 +118,6 @@ COPY --from=build /zxbasic/tools /opt/zxbasic/tools
COPY --from=build /inpaws/inpaws /bin/inpaws
COPY --from=build /usr/local/bin/ /usr/local/bin/
COPY --from=build /usr/local/lib/python3.12/dist-packages/skoolkit/ /usr/local/lib/python3.12/dist-packages/skoolkit/
COPY --from=build /usr/local/bin/hdfmonkey /bin/hdfmonkey
COPY --from=build /opt/pasta80 /opt/pasta80
COPY --from=z88dk /opt/z88dk/ /opt/z88dk/
ENV PATH="${PATH}:/opt/z88dk/bin:/opt/zxbasic:/opt/zxbasic/tools:/opt/pasta80"