Skip to content

Commit

Permalink
Updated a few software packages we depend on
Browse files Browse the repository at this point in the history
  • Loading branch information
gunterkoenigsmann committed Sep 3, 2022
1 parent ccd3dbb commit 87ff413
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ RUN apt-get update && apt-get -q -y install git autoconf python binutils \

# Debian-oldstable provides a sbcl. But as sbcl is evolving rapidly we want to use
# a more recent version.
RUN wget --quiet 'http://prdownloads.sourceforge.net/sbcl/sbcl-1.4.16-x86-64-linux-binary.tar.bz2' -O /tmp/sbcl.tar.bz2 && \
RUN wget --quiet 'http://prdownloads.sourceforge.net/sbcl/sbcl-2.2.8-x86-64-linux-binary.tar.bz2' -O /tmp/sbcl.tar.bz2 && \
mkdir /sbcl && \
tar jxf /tmp/sbcl.tar.bz2 --strip-components=1 -C /sbcl && \
cd /sbcl && \
Expand All @@ -26,9 +26,9 @@ RUN wget --quiet 'https://github.com/Kitware/CMake/releases/download/v3.13.3/cma
make -s -j 2&& \
make install

RUN wget --quiet 'https://github.com/wxWidgets/wxWidgets/releases/download/v3.1.3/wxWidgets-3.1.3.tar.bz2' && \
bzcat wxWidgets-3.1.3.tar.bz2 | tar xf -
RUN cd wxWidgets-3.1.3 && \
RUN wget --quiet 'https://github.com/wxWidgets/wxWidgets/releases/download/v3.2.0/wxWidgets-3.2.0.tar.bz2' && \
bzcat wxWidgets-3.2.0.tar.bz2 | tar xf -
RUN cd wxWidgets-3.2.0 && \
./configure && \
make -j 2 && \
make install && \
Expand Down

0 comments on commit 87ff413

Please sign in to comment.