Skip to content

Commit

Permalink
gstreamer 1.18.5 추가
Browse files Browse the repository at this point in the history
  • Loading branch information
sasgas committed Feb 27, 2023
1 parent ab632ef commit 4a94d08
Show file tree
Hide file tree
Showing 2 changed files with 20 additions and 0 deletions.
3 changes: 3 additions & 0 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -99,6 +99,9 @@ RUN /script/install_gstreamer1203.sh
ADD install_gstreamer1220.sh /script/
RUN /script/install_gstreamer1220.sh

ADD install_gstreamer1185.sh /script/
RUN /script/install_gstreamer1185.sh

# ctail
RUN wget -O - https://raw.githubusercontent.com/castisdev/ctail/master/install.sh --no-check-certificate | bash

Expand Down
17 changes: 17 additions & 0 deletions install_gstreamer1185.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
#!/bin/bash -e
set -x #echo on
cd ~
pip3 install meson
yum -y install flex bison libmount-devel; yum -y clean all
wget -nv --no-check-certificate --content-disposition https://github.com/GStreamer/gst-build/archive/refs/tags/1.18.5.tar.gz
tar xf gst-build-1.18.5.tar.gz
cd gst-build-1.18.5
export CFLAGS=$(pkg-config --cflags openssl11)
export LDFLAGS=$(pkg-config --libs openssl11)
meson -Dlibsoup:c_std=gnu99 -Dgst-plugins-bad:avtp=disabled build --prefix=/usr/local/gstreamer-1.18.5
meson install -C build
echo "/usr/local/gstreamer-1.18.5/lib64" >> /etc/ld.so.conf.d/gstreamer-1.18.5.conf
ldconfig
cd ~
rm -rf gst-build-1.18.5*
ccache -C

0 comments on commit 4a94d08

Please sign in to comment.