summaryrefslogtreecommitdiff
path: root/SDL_mixer
diff options
context:
space:
mode:
authorXavier Del Campo Romero <xavi.dcr@tutanota.com>2023-09-01 14:22:04 +0200
committerXavier Del Campo Romero <xavi.dcr@tutanota.com>2023-09-01 14:45:07 +0200
commit1261bcc70382b588c402b8d0740ecfcc77dd1b36 (patch)
tree2dfe964992f28adab749d49ce6e169979ea70eaf /SDL_mixer
parentfc84651ae8360dfd53b8f8e70269c1f722e5eed0 (diff)
downloadspm-packages-1261bcc70382b588c402b8d0740ecfcc77dd1b36.tar.gz
Move installed packages to /opt/spm/
Diffstat (limited to 'SDL_mixer')
-rw-r--r--SDL_mixer/1.2.12-minimal/Dockerfile6
1 files changed, 3 insertions, 3 deletions
diff --git a/SDL_mixer/1.2.12-minimal/Dockerfile b/SDL_mixer/1.2.12-minimal/Dockerfile
index 72b2f2f..9e8702b 100644
--- a/SDL_mixer/1.2.12-minimal/Dockerfile
+++ b/SDL_mixer/1.2.12-minimal/Dockerfile
@@ -5,13 +5,13 @@ RUN apk update && apk add \
gcc \
musl-dev \
wget
-COPY --from=libsdl:1.2.15 /install/SDL-1.2.15/ /usr/local/
+COPY --from=libsdl:1.2.15 /opt/spm/SDL-1.2.15/ /usr/local/
# sdl-config must be edited when moved to another prefix.
-RUN sed -ie 's,/install/SDL-1.2.15,/usr/local,g' $(which sdl-config)
+RUN sed -ie 's,/opt/spm/SDL-1.2.15,/usr/local,g' $(which sdl-config)
RUN wget https://www.libsdl.org/projects/SDL_mixer/release/SDL_mixer-1.2.12.tar.gz
RUN tar -xf SDL_mixer-1.2.12.tar.gz
WORKDIR /SDL_mixer-1.2.12
-ARG PREFIX=/install/SDL_mixer-1.2.12
+ARG PREFIX=/opt/spm/SDL_mixer-1.2.12
RUN ./configure \
--prefix=$PREFIX \
--enable-shared=no \