Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 4 additions & 3 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -150,16 +150,17 @@ RUN curl -LO http://sarrazip.com/dev/cmoc-0.1.98.tar.gz && \
# Build and install BASIC-To-6809
RUN git clone https://github.com/nowhereman999/BASIC-To-6809.git && \
cd BASIC-To-6809 && \
git checkout 804941e50d6a7c5a209f19f212fdbd672abd8b53 && \
git checkout 0e60e91fae063324fb9608f0117f6e9ac0582125 && \
cp Manual.pdf /usr/local/share/doc/basto6809.pdf && \
cd Binary_Versions && \
if [ "$(uname -m)" = "aarch64" ]; then \
unzip BASIC-To-6809_v5.27_Linux_arm64.zip -d /tmp/basto6809 && \
unzip BASIC-To-6809_v5.28_Linux_arm64.zip -d /tmp/basto6809 && \
mv /tmp/basto6809/BASIC-To-6809_Linux_arm64 /usr/local/share/basto6809; \
else \
unzip BASIC-To-6809_v5.27_Linux_x86_64.zip -d /tmp/basto6809 && \
unzip BASIC-To-6809_v5.28_Linux_x86_64.zip -d /tmp/basto6809 && \
mv /tmp/basto6809/BASIC-To-6809_Linux_x86_64 /usr/local/share/basto6809; \
fi && \
mv "/usr/local/share/basto6809/BasTo6809.2.Compile copy" "/usr/local/share/basto6809/BasTo6809.2.Compile" && \
chmod -R o+rx /usr/local/share/basto6809 && \
cd /root && rm -rf BASIC-To-6809 /tmp/basto6809
COPY utils/basto6809todsk /usr/local/bin
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ Color Computer](https://en.wikipedia.org/wiki/TRS-80_Color_Computer)
applications. It implements a Docker image that includes the following tools:

* CoCo Languages and Libraries
* [BasTo6809 V5.27](https://github.com/nowhereman999/BASIC-To-6809)
* [BasTo6809 V5.28](https://github.com/nowhereman999/BASIC-To-6809)
* [CMOC 0.1.98](http://sarrazip.com/dev/cmoc.html)
* [Java Grinder](http://www.mikekohn.net/micro/java_grinder.php)
* [LWTOOLS 4.24](http://lwtools.projects.l-w.ca)
Expand Down
Loading