Remove libebur128 from Dockerfile custom build
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
DataHoarder 2022-07-20 12:18:11 +02:00
parent a8298a755f
commit 9700741915
Signed by: DataHoarder
SSH key fingerprint: SHA256:OLTRf6Fl87G52SiR7sWLGNzlJt4WOX+tfI2yxo0z7xk

View file

@ -10,19 +10,13 @@ ENV CGO_CFLAGS="-march=native -Ofast"
RUN DEBIAN_FRONTEND=noninteractive apt update && \
DEBIAN_FRONTEND=noninteractive apt install -y \
git build-essential autoconf automake cmake make libtool libtool-bin gettext \
libssl-dev && \
libssl-dev libebur128-dev && \
git clone --depth 1 --branch 0.2.2 https://github.com/libsndfile/libsamplerate.git && cd libsamplerate && \
./autogen.sh && \
./configure --prefix /usr && \
make && \
make install && \
cd .. && \
git clone --depth 1 --branch v1.2.6 https://github.com/jiixyj/libebur128.git && cd libebur128 && \
mkdir build && cd build && \
cmake .. -DCMAKE_INTERPROCEDURAL_OPTIMIZATION=ON -DCMAKE_BUILD_TYPE=Release && \
make && \
make install && \
cd ../.. && \
wget https://downloads.sourceforge.net/project/lame/lame/3.100/lame-3.100.tar.gz -O lame-3.100.tar.gz && \
tar -xzvf lame-3.100.tar.gz && \
cd lame-3.100 && \