Skip to content
This repository has been archived by the owner on Jan 30, 2025. It is now read-only.

Commit

Permalink
forgot armhf
Browse files Browse the repository at this point in the history
  • Loading branch information
ryan.kuba authored and thelamer committed Apr 9, 2023
1 parent 97ba323 commit 6cc15fa
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions Dockerfile.armhf
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ RUN \
cd /tmp/spatialindex && \
cmake . \
-DCMAKE_INSTALL_PREFIX=/usr && \
make -j 2 && \
make -j 4 && \
make install && \
echo "**** compile irrlicht ****" && \
mkdir -p /tmp/irrlicht && \
Expand All @@ -80,7 +80,7 @@ RUN \
/tmp/irrlicht --strip-components=1 && \
cd /tmp/irrlicht && \
cmake . && \
make -j 2 && \
make -j 4 && \
make install && \
echo "**** compile minetestserver ****" && \
if [ -z ${MINETEST_RELEASE+x} ]; then \
Expand Down Expand Up @@ -113,12 +113,12 @@ RUN \
-DENABLE_SOUND=0 \
-DENABLE_SYSTEM_GMP=1 \
-DRUN_IN_PLACE=0 && \
make -j 2 && \
make -j 4 && \
make install && \
echo "**** copy games to temporary folder ****" && \
mkdir -p \
/defaults/games && \
cp -pr /usr/share/minetest/games/* /defaults/games/ && \
cp -pr /tmp/minetest/games/* /defaults/games/ && \
echo "**** split after 3rd dot if it exists in minetest tag variable ****" && \
echo "**** so we fetch game version x.x.x etc ****" && \
if [ $(echo "$MINETEST_RELEASE" | tr -cd '.' | wc -c) = 3 ]; then \
Expand Down

0 comments on commit 6cc15fa

Please sign in to comment.