869 lines
25 KiB
Docker
869 lines
25 KiB
Docker
# Default value of the arg should be specified here
|
|
ARG QT6=true
|
|
|
|
FROM centos:7 AS builder
|
|
|
|
ENV GIT https://github.com
|
|
ENV GIT_FREEDESKTOP ${GIT}/gitlab-freedesktop-mirrors
|
|
ENV PKG_CONFIG_PATH /usr/local/lib64/pkgconfig:/usr/local/lib/pkgconfig:/usr/local/share/pkgconfig
|
|
ENV QT5_VER 5_15_2
|
|
ENV QT5_TAG v5.15.2
|
|
ENV QT5_PREFIX /usr/local/desktop-app/Qt-5.15.2
|
|
ENV Qt5_DIR ${QT5_PREFIX}
|
|
ENV QT6_VER 6_2_2
|
|
ENV QT6_TAG v6.2.2
|
|
ENV QT6_PREFIX /usr/local/desktop-app/Qt-6.2.2
|
|
ENV Qt6_DIR ${QT6_PREFIX}
|
|
ENV OPENSSL_VER 1_1_1
|
|
ENV OPENSSL_PREFIX /usr/local/desktop-app/openssl-1.1.1
|
|
ENV OPENSSL_ROOT_DIR ${OPENSSL_PREFIX}
|
|
ENV CMAKE_VER 3.21.3
|
|
ENV CMAKE_FILE cmake-$CMAKE_VER-Linux-x86_64.sh
|
|
ENV PATH ${PATH}:${QT5_PREFIX}/bin:${QT6_PREFIX}/bin
|
|
ENV HFLAGS_DEBUG "-fstack-protector-all -fstack-clash-protection -fPIC"
|
|
ENV HFLAGS "$HFLAGS_DEBUG -D_FORTIFY_SOURCE=2"
|
|
|
|
RUN yum -y install https://dl.fedoraproject.org/pub/epel/epel-release-latest-7.noarch.rpm && yum clean all
|
|
RUN yum -y install https://packages.endpoint.com/rhel/7/os/x86_64/endpoint-repo-1.7-1.x86_64.rpm && yum clean all
|
|
RUN yum -y install centos-release-scl && yum clean all
|
|
|
|
RUN yum -y install git meson ninja-build autoconf automake libtool patch \
|
|
fontconfig-devel freetype-devel libX11-devel at-spi2-core-devel alsa-lib-devel \
|
|
pulseaudio-libs-devel mesa-libGL-devel mesa-libEGL-devel gtk3-devel \
|
|
perl-XML-Parser pkgconfig bison yasm file which xorg-x11-util-macros \
|
|
devtoolset-10-make devtoolset-10-gcc devtoolset-10-gcc-c++ \
|
|
devtoolset-10-binutils llvm-toolset-7.0 llvm-toolset-7.0-clang-devel \
|
|
llvm-toolset-7.0-llvm-devel && yum clean all
|
|
|
|
# Fix a bug with argument naming in CentOS 7 glibc
|
|
RUN sed -i 's/char \*__block/char */' /usr/include/unistd.h
|
|
|
|
SHELL [ "bash", "-c", ". /opt/rh/devtoolset-10/enable; exec bash -c \"$@\"", "-s"]
|
|
|
|
ENV LibrariesPath /usr/src/Libraries
|
|
WORKDIR $LibrariesPath
|
|
|
|
RUN mkdir /opt/cmake
|
|
RUN curl -sSLo $CMAKE_FILE $GIT/Kitware/CMake/releases/download/v$CMAKE_VER/$CMAKE_FILE
|
|
RUN sh $CMAKE_FILE --prefix=/opt/cmake --skip-license
|
|
RUN ln -s /opt/cmake/bin/cmake /usr/local/bin/cmake
|
|
RUN rm $CMAKE_FILE
|
|
|
|
FROM builder AS patches
|
|
RUN git clone $GIT/desktop-app/patches.git && cd patches && git checkout 1206363d59
|
|
|
|
FROM builder AS libffi
|
|
RUN git clone -b v3.4.2 --depth=1 $GIT/libffi/libffi.git
|
|
|
|
WORKDIR libffi
|
|
RUN ./autogen.sh
|
|
RUN ./configure --enable-static --disable-docs
|
|
RUN make -j$(nproc)
|
|
RUN make DESTDIR="$LibrariesPath/libffi-cache" install
|
|
|
|
WORKDIR ..
|
|
RUN rm -rf libffi
|
|
|
|
FROM builder AS zlib
|
|
RUN git clone -b v1.2.11 --depth=1 $GIT/madler/zlib.git
|
|
|
|
WORKDIR zlib
|
|
RUN CFLAGS="-O3 $HFLAGS" ./configure --static
|
|
RUN make -j$(nproc)
|
|
RUN make DESTDIR="$LibrariesPath/zlib-cache" install
|
|
|
|
WORKDIR ..
|
|
RUN rm -rf zlib
|
|
|
|
FROM builder AS xz
|
|
RUN git clone -b v5.2.5 https://git.tukaani.org/xz.git
|
|
|
|
WORKDIR xz
|
|
RUN CFLAGS="$HFLAGS" \
|
|
cmake -GNinja -B build . -DCMAKE_BUILD_TYPE=Release
|
|
RUN cmake --build build --parallel
|
|
RUN DESTDIR="$LibrariesPath/xz-cache" cmake --install build
|
|
|
|
WORKDIR ..
|
|
RUN rm -rf xz
|
|
|
|
FROM patches AS libepoxy
|
|
RUN git clone -b 1.5.9 --depth=1 $GIT/anholt/libepoxy.git
|
|
|
|
WORKDIR libepoxy
|
|
RUN git apply ../patches/libepoxy.patch
|
|
RUN meson build \
|
|
--buildtype=release \
|
|
--default-library=both \
|
|
-Dtests=false
|
|
|
|
RUN meson compile -C build
|
|
RUN DESTDIR="$LibrariesPath/libepoxy-cache" meson install -C build
|
|
|
|
WORKDIR ..
|
|
RUN rm -rf libepoxy
|
|
|
|
FROM patches AS libproxy
|
|
RUN git clone -b 0.4.17 --depth=1 $GIT/libproxy/libproxy.git
|
|
|
|
WORKDIR libproxy
|
|
RUN git apply ../patches/libproxy.patch
|
|
RUN CFLAGS="$HFLAGS" CXXFLAGS="$HFLAGS" cmake -GNinja -B build . \
|
|
-DCMAKE_BUILD_TYPE=Release \
|
|
-DWITH_DBUS=OFF \
|
|
-DWITH_NM=OFF \
|
|
-DWITH_NMold=OFF
|
|
|
|
RUN cmake --build build --parallel
|
|
RUN DESTDIR="$LibrariesPath/libproxy-cache" cmake --install build
|
|
|
|
WORKDIR ..
|
|
RUN rm -rf libproxy
|
|
|
|
FROM builder AS mozjpeg
|
|
RUN git clone -b v4.0.3 --depth=1 $GIT/mozilla/mozjpeg.git
|
|
|
|
WORKDIR mozjpeg
|
|
RUN CFLAGS="$HFLAGS" cmake -GNinja -B build . \
|
|
-DCMAKE_BUILD_TYPE=Release \
|
|
-DCMAKE_INSTALL_PREFIX=/usr/local \
|
|
-DWITH_JPEG8=ON \
|
|
-DPNG_SUPPORTED=OFF
|
|
|
|
RUN cmake --build build --parallel
|
|
RUN DESTDIR="$LibrariesPath/mozjpeg-cache" cmake --install build
|
|
|
|
WORKDIR ..
|
|
RUN rm -rf mozjpeg
|
|
|
|
FROM builder AS opus
|
|
RUN git clone -b v1.3.1 --depth=1 $GIT/xiph/opus.git
|
|
|
|
WORKDIR opus
|
|
RUN ./autogen.sh
|
|
RUN CFLAGS="-g -O2 $HFLAGS" ./configure
|
|
RUN make -j$(nproc)
|
|
RUN make DESTDIR="$LibrariesPath/opus-cache" install
|
|
|
|
WORKDIR ..
|
|
RUN rm -rf opus
|
|
|
|
FROM builder AS libvpx
|
|
RUN git clone -b v1.11.0 --depth=1 $GIT/webmproject/libvpx.git
|
|
|
|
WORKDIR libvpx
|
|
RUN ./configure \
|
|
--disable-examples \
|
|
--disable-unit-tests \
|
|
--disable-tools \
|
|
--disable-docs \
|
|
--enable-vp8 \
|
|
--enable-vp9 \
|
|
--enable-webm-io
|
|
RUN make -j$(nproc)
|
|
RUN make DESTDIR="$LibrariesPath/libvpx-cache" install
|
|
|
|
WORKDIR ..
|
|
RUN rm -rf libvpx
|
|
|
|
FROM builder AS rnnoise
|
|
RUN git clone -b master --depth=1 $GIT/desktop-app/rnnoise
|
|
|
|
WORKDIR rnnoise
|
|
RUN CFLAGS="$HFLAGS" cmake -GNinja -B build . \
|
|
-DCMAKE_BUILD_TYPE=Release
|
|
|
|
RUN cmake --build build --parallel
|
|
RUN mkdir -p "$LibrariesPath/rnnoise-cache/usr/local/include"
|
|
RUN cp "include/rnnoise.h" "$LibrariesPath/rnnoise-cache/usr/local/include/"
|
|
RUN mkdir -p "$LibrariesPath/rnnoise-cache/usr/local/lib"
|
|
RUN cp "build/librnnoise.a" "$LibrariesPath/rnnoise-cache/usr/local/lib/"
|
|
|
|
WORKDIR ..
|
|
RUN rm -rf rnnoise
|
|
|
|
FROM builder AS xcb-proto
|
|
RUN git clone -b xcb-proto-1.14.1 --depth=1 $GIT_FREEDESKTOP/xcbproto.git
|
|
|
|
WORKDIR xcbproto
|
|
RUN ./autogen.sh
|
|
RUN make -j$(nproc)
|
|
RUN make DESTDIR="$LibrariesPath/xcb-proto-cache" install
|
|
|
|
WORKDIR ..
|
|
RUN rm -rf xcbproto
|
|
|
|
FROM builder AS xcb
|
|
COPY --from=xcb-proto ${LibrariesPath}/xcb-proto-cache /
|
|
|
|
RUN git clone -b libxcb-1.14 --depth=1 $GIT_FREEDESKTOP/libxcb.git
|
|
|
|
WORKDIR libxcb
|
|
RUN CFLAGS="-g -O2 $HFLAGS" ./autogen.sh --enable-static
|
|
RUN make -j$(nproc)
|
|
RUN make DESTDIR="$LibrariesPath/xcb-cache" install
|
|
|
|
WORKDIR ..
|
|
RUN rm -rf libxcb
|
|
|
|
FROM builder AS xcb-wm
|
|
|
|
RUN git clone -b 0.4.1 --depth=1 --recursive $GIT_FREEDESKTOP/libxcb-wm.git
|
|
|
|
WORKDIR libxcb-wm
|
|
RUN ./autogen.sh --enable-static
|
|
RUN make -j$(nproc)
|
|
RUN make DESTDIR="$LibrariesPath/xcb-wm-cache" install
|
|
|
|
FROM builder AS xcb-util
|
|
|
|
RUN git clone -b 0.4.0 --depth=1 --recursive $GIT_FREEDESKTOP/libxcb-util.git
|
|
|
|
WORKDIR libxcb-util
|
|
RUN ./autogen.sh --enable-static
|
|
RUN make -j$(nproc)
|
|
RUN make DESTDIR="$LibrariesPath/xcb-util-cache" install
|
|
|
|
FROM builder AS xcb-image
|
|
COPY --from=xcb-util ${LibrariesPath}/xcb-util-cache /
|
|
|
|
RUN git clone -b 0.4.0 --depth=1 --recursive $GIT_FREEDESKTOP/libxcb-image.git
|
|
|
|
WORKDIR libxcb-image
|
|
RUN CFLAGS="-g -O2 $HFLAGS" ./autogen.sh --enable-static
|
|
RUN make -j$(nproc)
|
|
RUN make DESTDIR="$LibrariesPath/xcb-image-cache" install
|
|
|
|
FROM builder AS xcb-keysyms
|
|
|
|
RUN git clone -b 0.4.0 --depth=1 --recursive $GIT_FREEDESKTOP/libxcb-keysyms.git
|
|
|
|
WORKDIR libxcb-keysyms
|
|
RUN CFLAGS="-g -O2 $HFLAGS" ./autogen.sh --enable-static
|
|
RUN make -j$(nproc)
|
|
RUN make DESTDIR="$LibrariesPath/xcb-keysyms-cache" install
|
|
|
|
FROM builder AS xcb-render-util
|
|
|
|
RUN git clone -b 0.3.9 --depth=1 --recursive $GIT_FREEDESKTOP/libxcb-render-util.git
|
|
|
|
WORKDIR libxcb-render-util
|
|
RUN CFLAGS="-g -O2 $HFLAGS" ./autogen.sh --enable-static
|
|
RUN make -j$(nproc)
|
|
RUN make DESTDIR="$LibrariesPath/xcb-render-util-cache" install
|
|
|
|
FROM builder AS libXext
|
|
RUN git clone -b libXext-1.3.4 --depth=1 $GIT_FREEDESKTOP/libxext.git
|
|
|
|
WORKDIR libxext
|
|
RUN CFLAGS="-g -O2 $HFLAGS" ./autogen.sh --enable-static
|
|
RUN make -j$(nproc)
|
|
RUN make DESTDIR="$LibrariesPath/libXext-cache" install
|
|
|
|
WORKDIR ..
|
|
RUN rm -rf libxext
|
|
|
|
FROM builder AS libXtst
|
|
RUN git clone -b libXtst-1.2.3 --depth=1 $GIT_FREEDESKTOP/libxtst.git
|
|
|
|
WORKDIR libxtst
|
|
RUN CFLAGS="-g -O2 $HFLAGS" ./autogen.sh --enable-static
|
|
RUN make -j$(nproc)
|
|
RUN make DESTDIR="$LibrariesPath/libXtst-cache" install
|
|
|
|
WORKDIR ..
|
|
RUN rm -rf libxtst
|
|
|
|
FROM builder AS libXfixes
|
|
RUN git clone -b libXfixes-5.0.3 --depth=1 $GIT_FREEDESKTOP/libxfixes.git
|
|
|
|
WORKDIR libxfixes
|
|
RUN CFLAGS="-g -O2 $HFLAGS" ./autogen.sh --enable-static
|
|
RUN make -j$(nproc)
|
|
RUN make DESTDIR="$LibrariesPath/libXfixes-cache" install
|
|
|
|
WORKDIR ..
|
|
RUN rm -rf libxfixes
|
|
|
|
FROM builder AS libXv
|
|
COPY --from=libXext ${LibrariesPath}/libXext-cache /
|
|
|
|
RUN git clone -b libXv-1.0.11 --depth=1 $GIT_FREEDESKTOP/libxv.git
|
|
|
|
WORKDIR libxv
|
|
RUN ./autogen.sh --enable-static
|
|
RUN make -j$(nproc)
|
|
RUN make DESTDIR="$LibrariesPath/libXv-cache" install
|
|
|
|
WORKDIR ..
|
|
RUN rm -rf libxv
|
|
|
|
FROM builder AS libXrandr
|
|
RUN git clone -b libXrandr-1.5.2 --depth=1 $GIT_FREEDESKTOP/libxrandr.git
|
|
|
|
WORKDIR libxrandr
|
|
RUN CFLAGS="-g -O2 $HFLAGS" ./autogen.sh --enable-static
|
|
RUN make -j$(nproc)
|
|
RUN make DESTDIR="$LibrariesPath/libXrandr-cache" install
|
|
|
|
WORKDIR ..
|
|
RUN rm -rf libxrandr
|
|
|
|
FROM builder AS libXrender
|
|
RUN git clone -b libXrender-0.9.10 --depth=1 $GIT_FREEDESKTOP/libxrender.git
|
|
|
|
WORKDIR libxrender
|
|
RUN CFLAGS="-g -O2 $HFLAGS" ./autogen.sh --enable-static
|
|
RUN make -j$(nproc)
|
|
RUN make DESTDIR="$LibrariesPath/libXrender-cache" install
|
|
|
|
WORKDIR ..
|
|
RUN rm -rf libxrender
|
|
|
|
FROM builder AS libXdamage
|
|
RUN git clone -b libXdamage-1.1.5 --depth=1 $GIT_FREEDESKTOP/libxdamage.git
|
|
|
|
WORKDIR libxdamage
|
|
RUN CFLAGS="-g -O2 $HFLAGS" ./autogen.sh --enable-static
|
|
RUN make -j$(nproc)
|
|
RUN make DESTDIR="$LibrariesPath/libXdamage-cache" install
|
|
|
|
WORKDIR ..
|
|
RUN rm -rf libxdamage
|
|
|
|
FROM builder AS libXcomposite
|
|
RUN git clone -b libXcomposite-0.4.5 --depth=1 $GIT_FREEDESKTOP/libxcomposite.git
|
|
|
|
WORKDIR libxcomposite
|
|
RUN CFLAGS="-g -O2 $HFLAGS" ./autogen.sh --enable-static
|
|
RUN make -j$(nproc)
|
|
RUN make DESTDIR="$LibrariesPath/libXcomposite-cache" install
|
|
|
|
WORKDIR ..
|
|
RUN rm -rf libxcomposite
|
|
|
|
FROM builder AS wayland
|
|
COPY --from=libffi ${LibrariesPath}/libffi-cache /
|
|
|
|
RUN git clone -b 1.20.0 --depth=1 $GIT_FREEDESKTOP/wayland.git
|
|
|
|
WORKDIR wayland
|
|
RUN meson build \
|
|
--buildtype=release \
|
|
--default-library=both \
|
|
-Dtests=false \
|
|
-Ddocumentation=false \
|
|
-Ddtd_validation=false \
|
|
-Dicon_directory=/usr/share/icons
|
|
|
|
RUN meson compile -C build
|
|
RUN DESTDIR="$LibrariesPath/wayland-cache" meson install -C build
|
|
|
|
WORKDIR ..
|
|
RUN rm -rf wayland
|
|
|
|
FROM builder AS libpciaccess
|
|
RUN git clone -b libpciaccess-0.16 --depth=1 $GIT_FREEDESKTOP/libpciaccess.git
|
|
|
|
WORKDIR libpciaccess
|
|
RUN ./autogen.sh --enable-static
|
|
|
|
RUN make -j$(nproc)
|
|
RUN make DESTDIR="$LibrariesPath/libpciaccess-cache" install
|
|
|
|
WORKDIR ..
|
|
RUN rm -rf libpciaccess
|
|
|
|
FROM builder AS drm
|
|
COPY --from=libpciaccess ${LibrariesPath}/libpciaccess-cache /
|
|
|
|
RUN git clone -b libdrm-2.4.109 --depth=1 $GIT_FREEDESKTOP/drm.git
|
|
|
|
WORKDIR drm
|
|
RUN meson build \
|
|
--buildtype=release \
|
|
--default-library=both
|
|
|
|
RUN meson compile -C build
|
|
RUN DESTDIR="$LibrariesPath/drm-cache" meson install -C build
|
|
|
|
WORKDIR ..
|
|
RUN rm -rf drm
|
|
|
|
FROM builder AS libva
|
|
|
|
COPY --from=libffi ${LibrariesPath}/libffi-cache /
|
|
COPY --from=libXext ${LibrariesPath}/libXext-cache /
|
|
COPY --from=libXfixes ${LibrariesPath}/libXfixes-cache /
|
|
COPY --from=wayland ${LibrariesPath}/wayland-cache /
|
|
COPY --from=drm ${LibrariesPath}/drm-cache /
|
|
|
|
RUN git clone -b 2.13.0 --depth=1 $GIT/intel/libva.git
|
|
|
|
WORKDIR libva
|
|
RUN CFLAGS="-g -O2 $HFLAGS" ./autogen.sh \
|
|
--enable-static \
|
|
--sysconfdir=/etc \
|
|
--with-drivers-path=/usr/lib/dri
|
|
|
|
RUN make -j$(nproc)
|
|
RUN make DESTDIR="$LibrariesPath/libva-cache" install
|
|
|
|
WORKDIR ..
|
|
RUN rm -rf libva
|
|
|
|
FROM builder AS libvdpau
|
|
RUN git clone -b 1.4 --depth=1 $GIT_FREEDESKTOP/libvdpau.git
|
|
|
|
WORKDIR libvdpau
|
|
RUN sed -i 's/shared_library/library/g' src/meson.build
|
|
|
|
RUN meson build \
|
|
--buildtype=release \
|
|
--default-library=both \
|
|
--sysconfdir=/etc \
|
|
-Ddocumentation=false \
|
|
-Dmoduledir=/usr/lib/vdpau
|
|
|
|
RUN meson compile -C build
|
|
RUN DESTDIR="$LibrariesPath/libvdpau-cache" meson install -C build
|
|
|
|
WORKDIR ..
|
|
RUN rm -rf libvdpau
|
|
|
|
FROM builder AS ffmpeg
|
|
|
|
COPY --from=opus ${LibrariesPath}/opus-cache /
|
|
COPY --from=libvpx ${LibrariesPath}/libvpx-cache /
|
|
COPY --from=libXext ${LibrariesPath}/libXext-cache /
|
|
COPY --from=libXfixes ${LibrariesPath}/libXfixes-cache /
|
|
COPY --from=libXv ${LibrariesPath}/libXv-cache /
|
|
COPY --from=drm ${LibrariesPath}/drm-cache /
|
|
COPY --from=libva ${LibrariesPath}/libva-cache /
|
|
COPY --from=libvdpau ${LibrariesPath}/libvdpau-cache /
|
|
|
|
RUN mkdir ffmpeg
|
|
WORKDIR ffmpeg
|
|
RUN git init
|
|
RUN git remote add origin $GIT/FFmpeg/FFmpeg.git
|
|
RUN git fetch --depth=1 origin cc33e73618a981de7fd96385ecb34719de031f16
|
|
RUN git reset --hard FETCH_HEAD
|
|
|
|
RUN ./configure \
|
|
--extra-cflags="-DCONFIG_SAFE_BITSTREAM_READER=1 $HFLAGS" \
|
|
--extra-cxxflags="-DCONFIG_SAFE_BITSTREAM_READER=1 $HFLAGS" \
|
|
--disable-debug \
|
|
--disable-programs \
|
|
--disable-doc \
|
|
--disable-network \
|
|
--disable-autodetect \
|
|
--disable-everything \
|
|
--enable-libopus \
|
|
--enable-libvpx \
|
|
--enable-vaapi \
|
|
--enable-vdpau \
|
|
--enable-xlib \
|
|
--enable-libdrm \
|
|
--enable-protocol=file \
|
|
--enable-hwaccel=h264_vaapi \
|
|
--enable-hwaccel=h264_vdpau \
|
|
--enable-hwaccel=mpeg4_vaapi \
|
|
--enable-hwaccel=mpeg4_vdpau \
|
|
--enable-decoder=aac \
|
|
--enable-decoder=aac_fixed \
|
|
--enable-decoder=aac_latm \
|
|
--enable-decoder=aasc \
|
|
--enable-decoder=alac \
|
|
--enable-decoder=flac \
|
|
--enable-decoder=gif \
|
|
--enable-decoder=h264 \
|
|
--enable-decoder=h264_vdpau \
|
|
--enable-decoder=hevc \
|
|
--enable-decoder=libvpx_vp8 \
|
|
--enable-decoder=libvpx_vp9 \
|
|
--enable-decoder=mp1 \
|
|
--enable-decoder=mp1float \
|
|
--enable-decoder=mp2 \
|
|
--enable-decoder=mp2float \
|
|
--enable-decoder=mp3 \
|
|
--enable-decoder=mp3adu \
|
|
--enable-decoder=mp3adufloat \
|
|
--enable-decoder=mp3float \
|
|
--enable-decoder=mp3on4 \
|
|
--enable-decoder=mp3on4float \
|
|
--enable-decoder=mpeg4 \
|
|
--enable-decoder=mpeg4_vdpau \
|
|
--enable-decoder=msmpeg4v2 \
|
|
--enable-decoder=msmpeg4v3 \
|
|
--enable-decoder=opus \
|
|
--enable-decoder=pcm_alaw \
|
|
--enable-decoder=pcm_f32be \
|
|
--enable-decoder=pcm_f32le \
|
|
--enable-decoder=pcm_f64be \
|
|
--enable-decoder=pcm_f64le \
|
|
--enable-decoder=pcm_lxf \
|
|
--enable-decoder=pcm_mulaw \
|
|
--enable-decoder=pcm_s16be \
|
|
--enable-decoder=pcm_s16be_planar \
|
|
--enable-decoder=pcm_s16le \
|
|
--enable-decoder=pcm_s16le_planar \
|
|
--enable-decoder=pcm_s24be \
|
|
--enable-decoder=pcm_s24daud \
|
|
--enable-decoder=pcm_s24le \
|
|
--enable-decoder=pcm_s24le_planar \
|
|
--enable-decoder=pcm_s32be \
|
|
--enable-decoder=pcm_s32le \
|
|
--enable-decoder=pcm_s32le_planar \
|
|
--enable-decoder=pcm_s64be \
|
|
--enable-decoder=pcm_s64le \
|
|
--enable-decoder=pcm_s8 \
|
|
--enable-decoder=pcm_s8_planar \
|
|
--enable-decoder=pcm_u16be \
|
|
--enable-decoder=pcm_u16le \
|
|
--enable-decoder=pcm_u24be \
|
|
--enable-decoder=pcm_u24le \
|
|
--enable-decoder=pcm_u32be \
|
|
--enable-decoder=pcm_u32le \
|
|
--enable-decoder=pcm_u8 \
|
|
--enable-decoder=pcm_zork \
|
|
--enable-decoder=vorbis \
|
|
--enable-decoder=wavpack \
|
|
--enable-decoder=wmalossless \
|
|
--enable-decoder=wmapro \
|
|
--enable-decoder=wmav1 \
|
|
--enable-decoder=wmav2 \
|
|
--enable-decoder=wmavoice \
|
|
--enable-encoder=libopus \
|
|
--enable-parser=aac \
|
|
--enable-parser=aac_latm \
|
|
--enable-parser=flac \
|
|
--enable-parser=h264 \
|
|
--enable-parser=hevc \
|
|
--enable-parser=mpeg4video \
|
|
--enable-parser=mpegaudio \
|
|
--enable-parser=opus \
|
|
--enable-parser=vorbis \
|
|
--enable-demuxer=aac \
|
|
--enable-demuxer=flac \
|
|
--enable-demuxer=gif \
|
|
--enable-demuxer=h264 \
|
|
--enable-demuxer=hevc \
|
|
--enable-demuxer=matroska \
|
|
--enable-demuxer=m4v \
|
|
--enable-demuxer=mov \
|
|
--enable-demuxer=mp3 \
|
|
--enable-demuxer=ogg \
|
|
--enable-demuxer=wav \
|
|
--enable-muxer=ogg \
|
|
--enable-muxer=opus
|
|
|
|
RUN make -j$(nproc)
|
|
RUN make DESTDIR="$LibrariesPath/ffmpeg-cache" install
|
|
|
|
FROM builder AS openal
|
|
ADD https://api.github.com/repos/telegramdesktop/openal-soft/git/refs/heads/fix_pulse_default openal-soft-version.json
|
|
RUN git clone -b fix_pulse_default --depth=1 $GIT/telegramdesktop/openal-soft.git
|
|
|
|
WORKDIR openal-soft
|
|
RUN CFLAGS="$HFLAGS" CXXFLAGS="$HFLAGS" cmake -GNinja -B build . \
|
|
-DCMAKE_BUILD_TYPE=Release \
|
|
-DLIBTYPE:STRING=STATIC \
|
|
-DALSOFT_EXAMPLES=OFF \
|
|
-DALSOFT_TESTS=OFF \
|
|
-DALSOFT_UTILS=OFF \
|
|
-DALSOFT_CONFIG=OFF
|
|
|
|
RUN cmake --build build --parallel
|
|
RUN DESTDIR="$LibrariesPath/openal-cache" cmake --install build
|
|
|
|
WORKDIR ..
|
|
RUN rm -rf openal
|
|
|
|
FROM builder AS openssl
|
|
ENV opensslDir openssl_${OPENSSL_VER}
|
|
RUN git clone -b OpenSSL_${OPENSSL_VER}-stable --depth=1 \
|
|
$GIT/openssl/openssl.git $opensslDir
|
|
|
|
WORKDIR ${opensslDir}
|
|
RUN ./config \
|
|
--prefix="$OPENSSL_PREFIX" \
|
|
--openssldir=/etc/ssl \
|
|
no-tests \
|
|
no-dso
|
|
|
|
RUN make -j$(nproc)
|
|
RUN make DESTDIR="$LibrariesPath/openssl-cache" install_sw
|
|
|
|
WORKDIR ..
|
|
RUN rm -rf $opensslDir
|
|
|
|
FROM builder AS xkbcommon
|
|
COPY --from=xcb ${LibrariesPath}/xcb-cache /
|
|
|
|
RUN git clone -b xkbcommon-1.3.1 --depth=1 $GIT/xkbcommon/libxkbcommon.git
|
|
|
|
WORKDIR libxkbcommon
|
|
RUN meson build \
|
|
--buildtype=release \
|
|
--default-library=both \
|
|
-Denable-docs=false \
|
|
-Denable-wayland=false \
|
|
-Denable-xkbregistry=false \
|
|
-Dxkb-config-root=/usr/share/X11/xkb \
|
|
-Dxkb-config-extra-path=/etc/xkb \
|
|
-Dx-locale-root=/usr/share/X11/locale
|
|
|
|
RUN meson compile -C build
|
|
RUN DESTDIR="$LibrariesPath/xkbcommon-cache" meson install -C build
|
|
|
|
WORKDIR ..
|
|
RUN rm -rf libxkbcommon
|
|
|
|
FROM builder AS mm-common
|
|
RUN git clone -b 1.0.3 --depth=1 $GIT/GNOME/mm-common.git
|
|
|
|
WORKDIR mm-common
|
|
RUN NOCONFIGURE=1 ./autogen.sh
|
|
RUN ./configure --enable-network
|
|
RUN make -j$(nproc)
|
|
RUN make DESTDIR="$LibrariesPath/mm-common-cache" install
|
|
|
|
WORKDIR ..
|
|
RUN rm -rf mm-common
|
|
|
|
FROM builder AS libsigcplusplus
|
|
COPY --from=mm-common ${LibrariesPath}/mm-common-cache /
|
|
|
|
RUN git clone -b 2.10.7 --depth=1 $GIT/libsigcplusplus/libsigcplusplus.git
|
|
|
|
WORKDIR libsigcplusplus
|
|
ENV ACLOCAL_PATH="/usr/local/share/aclocal"
|
|
RUN NOCONFIGURE=1 ./autogen.sh
|
|
RUN CFLAGS="-g -O2 $HFLAGS" CXXFLAGS="-g -O2 $HFLAGS" ./configure --enable-maintainer-mode --enable-static --disable-documentation
|
|
RUN make -j$(nproc)
|
|
RUN make DESTDIR="$LibrariesPath/libsigcplusplus-cache" install
|
|
|
|
WORKDIR ..
|
|
RUN rm -rf libsigcplusplus
|
|
|
|
FROM patches AS glibmm
|
|
COPY --from=mm-common ${LibrariesPath}/mm-common-cache /
|
|
COPY --from=libsigcplusplus ${LibrariesPath}/libsigcplusplus-cache /
|
|
|
|
# equals to glib version of Ubuntu 14.04
|
|
RUN git clone -b 2.40.0 --depth=1 $GIT/GNOME/glibmm.git
|
|
|
|
WORKDIR glibmm
|
|
RUN git apply ../patches/glibmm.patch
|
|
ENV ACLOCAL_PATH="/usr/local/share/aclocal"
|
|
RUN NOCONFIGURE=1 ./autogen.sh
|
|
RUN CC="gcc -flto $HFLAGS" CXX="g++ -flto $HFLAGS" AR=gcc-ar RANLIB=gcc-ranlib ./configure \
|
|
--enable-maintainer-mode \
|
|
--enable-static \
|
|
--disable-documentation
|
|
|
|
RUN make -j$(nproc)
|
|
RUN make DESTDIR="$LibrariesPath/glibmm-cache" install
|
|
|
|
WORKDIR ..
|
|
RUN rm -rf glibmm
|
|
|
|
FROM patches AS qt
|
|
ARG QT6
|
|
|
|
COPY --from=libffi ${LibrariesPath}/libffi-cache /
|
|
COPY --from=zlib ${LibrariesPath}/zlib-cache /
|
|
COPY --from=libepoxy ${LibrariesPath}/libepoxy-cache /
|
|
COPY --from=libproxy ${LibrariesPath}/libproxy-cache /
|
|
COPY --from=mozjpeg ${LibrariesPath}/mozjpeg-cache /
|
|
COPY --from=xcb ${LibrariesPath}/xcb-cache /
|
|
COPY --from=xcb-wm ${LibrariesPath}/xcb-wm-cache /
|
|
COPY --from=xcb-util ${LibrariesPath}/xcb-util-cache /
|
|
COPY --from=xcb-image ${LibrariesPath}/xcb-image-cache /
|
|
COPY --from=xcb-keysyms ${LibrariesPath}/xcb-keysyms-cache /
|
|
COPY --from=xcb-render-util ${LibrariesPath}/xcb-render-util-cache /
|
|
COPY --from=wayland ${LibrariesPath}/wayland-cache /
|
|
COPY --from=openssl ${LibrariesPath}/openssl-cache /
|
|
COPY --from=xkbcommon ${LibrariesPath}/xkbcommon-cache /
|
|
|
|
RUN [ -n "${QT6}" ] || git clone -b ${QT5_TAG} --depth=1 git://code.qt.io/qt/qt5.git qt_${QT5_VER}
|
|
WORKDIR qt_${QT5_VER}
|
|
RUN [ -n "${QT6}" ] || perl init-repository --module-subset=qtbase,qtwayland,qtimageformats,qtsvg
|
|
|
|
WORKDIR qtbase
|
|
RUN [ -n "${QT6}" ] || find ../../patches/qtbase_${QT5_VER} -type f -print0 | sort -z | xargs -r0 git apply
|
|
WORKDIR ../qtwayland
|
|
RUN [ -n "${QT6}" ] || find ../../patches/qtwayland_${QT5_VER} -type f -print0 | sort -z | xargs -r0 git apply
|
|
WORKDIR ..
|
|
|
|
RUN [ -n "${QT6}" ] || ./configure -prefix "$QT5_PREFIX" \
|
|
-release \
|
|
-force-debug-info \
|
|
-opensource \
|
|
-confirm-license \
|
|
-xcb \
|
|
-libproxy \
|
|
-qt-libpng \
|
|
-qt-harfbuzz \
|
|
-qt-pcre \
|
|
-no-icu \
|
|
-no-feature-xcb-sm \
|
|
-no-feature-wayland-server \
|
|
-no-feature-egl-extension-platform-wayland \
|
|
-static \
|
|
-dbus-runtime \
|
|
-openssl-linked \
|
|
-I "$OPENSSL_PREFIX/include" \
|
|
OPENSSL_LIBS="$OPENSSL_PREFIX/lib/libssl.a $OPENSSL_PREFIX/lib/libcrypto.a -lz -ldl -lpthread" \
|
|
LIBPROXY_LIBS="-lproxy -ldl"\
|
|
-nomake examples \
|
|
-nomake tests
|
|
|
|
RUN [ -n "${QT6}" ] || make -j$(nproc)
|
|
RUN [ -n "${QT6}" ] || make INSTALL_ROOT="$LibrariesPath/qt-cache" install
|
|
|
|
WORKDIR ..
|
|
RUN [ -n "${QT6}" ] || rm -rf qt_${QT5_VER}
|
|
|
|
RUN [ -z "${QT6}" ] || git clone -b ${QT6_TAG} --depth=1 git://code.qt.io/qt/qt5.git qt_${QT6_VER}
|
|
WORKDIR qt_${QT6_VER}
|
|
RUN [ -z "${QT6}" ] || perl init-repository --module-subset=qtbase,qtwayland,qtimageformats,qtsvg,qt5compat
|
|
|
|
WORKDIR qtbase
|
|
RUN [ -z "${QT6}" ] || find ../../patches/qtbase_${QT6_VER} -type f -print0 | sort -z | xargs -r0 git apply
|
|
WORKDIR ../qtwayland
|
|
RUN [ -z "${QT6}" ] || find ../../patches/qtwayland_${QT6_VER} -type f -print0 | sort -z | xargs -r0 git apply
|
|
WORKDIR ../qt5compat
|
|
RUN [ -z "${QT6}" ] || find ../../patches/qt5compat_${QT6_VER} -type f -print0 | sort -z | xargs -r0 git apply
|
|
WORKDIR ..
|
|
|
|
RUN [ -z "${QT6}" ] || ./configure -prefix "$QT6_PREFIX" \
|
|
-release \
|
|
-force-debug-info \
|
|
-opensource \
|
|
-confirm-license \
|
|
-libproxy \
|
|
-qt-libpng \
|
|
-qt-harfbuzz \
|
|
-qt-pcre \
|
|
-no-pch \
|
|
-no-icu \
|
|
-no-feature-xcb-sm \
|
|
-no-feature-highdpiscaling \
|
|
-static \
|
|
-dbus-runtime \
|
|
-openssl-linked \
|
|
-nomake examples \
|
|
-nomake tests \
|
|
-- \
|
|
-DINPUT_egl_extension_platform_wayland=no
|
|
|
|
RUN [ -z "${QT6}" ] || cmake --build . --parallel
|
|
RUN [ -z "${QT6}" ] || DESTDIR="$LibrariesPath/qt-cache" cmake --install .
|
|
|
|
WORKDIR ..
|
|
RUN [ -z "${QT6}" ] || rm -rf qt_${QT6_VER}
|
|
|
|
FROM patches AS breakpad
|
|
RUN git clone https://chromium.googlesource.com/breakpad/breakpad.git
|
|
|
|
WORKDIR breakpad
|
|
RUN git checkout dfcb7b6799
|
|
RUN git apply ../patches/breakpad.diff
|
|
RUN git clone https://chromium.googlesource.com/linux-syscall-support.git src/third_party/lss
|
|
|
|
WORKDIR src/third_party/lss
|
|
RUN git checkout e1e7b0ad8e
|
|
|
|
WORKDIR ../../..
|
|
RUN ./configure
|
|
RUN make -j$(nproc)
|
|
RUN make DESTDIR="${LibrariesPath}/breakpad-cache" install
|
|
|
|
WORKDIR ..
|
|
|
|
FROM builder AS webrtc
|
|
|
|
COPY --from=mozjpeg ${LibrariesPath}/mozjpeg-cache /
|
|
COPY --from=opus ${LibrariesPath}/opus-cache /
|
|
COPY --from=libvpx ${LibrariesPath}/libvpx-cache /
|
|
COPY --from=ffmpeg ${LibrariesPath}/ffmpeg-cache /
|
|
COPY --from=openssl ${LibrariesPath}/openssl-cache /
|
|
COPY --from=libXtst ${LibrariesPath}/libXtst-cache /
|
|
|
|
# Shallow clone on a specific commit.
|
|
RUN mkdir tg_owt
|
|
WORKDIR tg_owt
|
|
RUN git init
|
|
RUN git remote add origin $GIT/desktop-app/tg_owt.git
|
|
RUN git fetch --depth=1 origin 6372a0848f8dd84013e291b44f9d1427fde3a90e
|
|
RUN git reset --hard FETCH_HEAD
|
|
RUN git submodule init
|
|
RUN git submodule update
|
|
|
|
WORKDIR src/third_party/pipewire
|
|
RUN meson build -Dspa-plugins=disabled
|
|
|
|
WORKDIR ../../..
|
|
|
|
RUN cmake -G"Ninja Multi-Config" -B out . \
|
|
-DCMAKE_C_FLAGS_RELEASE="-O3 -DNDEBUG $HFLAGS" \
|
|
-DCMAKE_C_FLAGS_DEBUG="-g $HFLAGS_DEBUG" \
|
|
-DCMAKE_CXX_FLAGS_RELEASE="-O3 -DNDEBUG $HFLAGS" \
|
|
-DCMAKE_CXX_FLAGS_DEBUG="-g $HFLAGS_DEBUG" \
|
|
-DTG_OWT_SPECIAL_TARGET=linux \
|
|
-DTG_OWT_LIBJPEG_INCLUDE_PATH=/usr/local/include \
|
|
-DTG_OWT_OPENSSL_INCLUDE_PATH=$OPENSSL_PREFIX/include \
|
|
-DTG_OWT_OPUS_INCLUDE_PATH=/usr/local/include/opus \
|
|
-DTG_OWT_LIBVPX_INCLUDE_PATH=/usr/local/include \
|
|
-DTG_OWT_FFMPEG_INCLUDE_PATH=/usr/local/include
|
|
|
|
RUN cmake --build out --config Release --parallel
|
|
RUN cmake --build out --config Debug --parallel
|
|
|
|
FROM builder
|
|
|
|
COPY --from=libffi ${LibrariesPath}/libffi-cache /
|
|
COPY --from=zlib ${LibrariesPath}/zlib-cache /
|
|
COPY --from=xz ${LibrariesPath}/xz-cache /
|
|
COPY --from=libepoxy ${LibrariesPath}/libepoxy-cache /
|
|
COPY --from=libproxy ${LibrariesPath}/libproxy-cache /
|
|
COPY --from=mozjpeg ${LibrariesPath}/mozjpeg-cache /
|
|
COPY --from=opus ${LibrariesPath}/opus-cache /
|
|
COPY --from=libvpx ${LibrariesPath}/libvpx-cache /
|
|
COPY --from=rnnoise ${LibrariesPath}/rnnoise-cache /
|
|
COPY --from=xcb ${LibrariesPath}/xcb-cache /
|
|
COPY --from=xcb-wm ${LibrariesPath}/xcb-wm-cache /
|
|
COPY --from=xcb-util ${LibrariesPath}/xcb-util-cache /
|
|
COPY --from=xcb-image ${LibrariesPath}/xcb-image-cache /
|
|
COPY --from=xcb-keysyms ${LibrariesPath}/xcb-keysyms-cache /
|
|
COPY --from=xcb-render-util ${LibrariesPath}/xcb-render-util-cache /
|
|
COPY --from=libXext ${LibrariesPath}/libXext-cache /
|
|
COPY --from=libXfixes ${LibrariesPath}/libXfixes-cache /
|
|
COPY --from=libXv ${LibrariesPath}/libXv-cache /
|
|
COPY --from=libXtst ${LibrariesPath}/libXtst-cache /
|
|
COPY --from=libXrandr ${LibrariesPath}/libXrandr-cache /
|
|
COPY --from=libXrender ${LibrariesPath}/libXrender-cache /
|
|
COPY --from=libXdamage ${LibrariesPath}/libXdamage-cache /
|
|
COPY --from=libXcomposite ${LibrariesPath}/libXcomposite-cache /
|
|
COPY --from=wayland ${LibrariesPath}/wayland-cache /
|
|
COPY --from=libpciaccess ${LibrariesPath}/libpciaccess-cache /
|
|
COPY --from=drm ${LibrariesPath}/drm-cache /
|
|
COPY --from=libva ${LibrariesPath}/libva-cache /
|
|
COPY --from=libvdpau ${LibrariesPath}/libvdpau-cache /
|
|
COPY --from=ffmpeg ${LibrariesPath}/ffmpeg ffmpeg
|
|
COPY --from=ffmpeg ${LibrariesPath}/ffmpeg-cache /
|
|
COPY --from=openal ${LibrariesPath}/openal-cache /
|
|
COPY --from=openssl ${LibrariesPath}/openssl-cache /
|
|
COPY --from=xkbcommon ${LibrariesPath}/xkbcommon-cache /
|
|
COPY --from=libsigcplusplus ${LibrariesPath}/libsigcplusplus-cache /
|
|
COPY --from=glibmm ${LibrariesPath}/glibmm-cache /
|
|
COPY --from=qt ${LibrariesPath}/qt-cache /
|
|
COPY --from=breakpad ${LibrariesPath}/breakpad breakpad
|
|
COPY --from=breakpad ${LibrariesPath}/breakpad-cache /
|
|
COPY --from=webrtc ${LibrariesPath}/tg_owt tg_owt
|
|
|
|
WORKDIR ../tdesktop
|
|
VOLUME [ "/usr/src/tdesktop" ]
|
|
CMD [ "/usr/src/tdesktop/Telegram/build/docker/centos_env/build.sh" ]
|