use /usr for install paths on compiles

This commit is contained in:
sparklyballs 2016-09-25 14:01:41 +01:00
parent da15618055
commit 52e88f474d

View file

@ -44,6 +44,7 @@ RUN \
https://sourceforge.net/projects/mp3gain/files/mp3gain/1.5.2/mp3gain-1_5_2_r2-src.zip && \ https://sourceforge.net/projects/mp3gain/files/mp3gain/1.5.2/mp3gain-1_5_2_r2-src.zip && \
cd /tmp/mp3gain-src && \ cd /tmp/mp3gain-src && \
unzip -qq /tmp/mp3gain-src/mp3gain.zip && \ unzip -qq /tmp/mp3gain-src/mp3gain.zip && \
sed -i "s#/usr/local/bin#/usr/bin#g" /tmp/mp3gain-src/Makefile && \
make && \ make && \
make install && \ make install && \
@ -53,7 +54,8 @@ RUN \
cd /tmp/chromaprint && \ cd /tmp/chromaprint && \
cmake \ cmake \
-DBUILD_EXAMPLES=ON . \ -DBUILD_EXAMPLES=ON . \
-DCMAKE_BUILD_TYPE=Release && \ -DCMAKE_BUILD_TYPE=Release \
-DCMAKE_INSTALL_PREFIX:PATH=/usr && \
make && \ make && \
make install && \ make install && \