Skip to content

Commit

Permalink
gstreamer 1.20.3
Browse files Browse the repository at this point in the history
  • Loading branch information
sasgas committed Feb 17, 2023
1 parent 1c468a2 commit 5886521
Show file tree
Hide file tree
Showing 13 changed files with 28 additions and 16 deletions.
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -100,8 +100,8 @@ RUN /script/install_wrk420.sh
ADD install_webrtc.sh /script/
RUN /script/install_webrtc.sh

ADD install_gstreamer1205.sh /script/
RUN /script/install_gstreamer1205.sh
ADD install_gstreamer1203.sh /script/
RUN /script/install_gstreamer1203.sh

# ctail
RUN wget -O - https://raw.githubusercontent.com/castisdev/ctail/master/install.sh --no-check-certificate | bash
Expand Down
1 change: 1 addition & 0 deletions install_boost181.sh
Original file line number Diff line number Diff line change
Expand Up @@ -15,3 +15,4 @@ cd boost_1_81_0

cd ~
rm -rf boost_*
ccache -C
1 change: 1 addition & 0 deletions install_cppcheck29.sh
Original file line number Diff line number Diff line change
Expand Up @@ -8,3 +8,4 @@ cd cppcheck-2.9
mkdir build;cd build;cmake ..;make install -j$(nproc)
cd ~
rm -rf cppcheck*
ccache -C
1 change: 1 addition & 0 deletions install_cryptopp870.sh
Original file line number Diff line number Diff line change
Expand Up @@ -10,3 +10,4 @@ make static -j$(nproc)
make install -j$(nproc)
cd ~
rm -rf cryptopp*
ccache -C
1 change: 1 addition & 0 deletions install_ffmpeg512.sh
Original file line number Diff line number Diff line change
Expand Up @@ -43,3 +43,4 @@ ldconfig

cd ~
rm -rf ffmpeg-5.1.2*
ccache -C
1 change: 1 addition & 0 deletions install_googletest1121.sh
Original file line number Diff line number Diff line change
Expand Up @@ -7,3 +7,4 @@ cd googletest-release-1.12.1/
mkdir build;cd build;cmake ..;make install -j$(nproc)
cd ~
rm -rf release-1.12.1.tar.gz googletest*
ccache -C
16 changes: 16 additions & 0 deletions install_gstreamer1203.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
#!/bin/bash -e
set -x #echo on
cd ~
pip3 install meson
yum -y install flex bison; yum -y clean all
wget -nv --no-check-certificate --content-disposition https://github.com/GStreamer/gstreamer/archive/refs/tags/1.20.3.tar.gz
tar xf gstreamer-1.20.3.tar.gz
cd gstreamer-1.20.3
export PKG_CONFIG_PATH=/usr/local/lib/pkgconfig
meson -Dlibsoup:c_std=gnu99 build --prefix=/usr/local/gstreamer-1.20.3
meson install -C build
echo "/usr/local/gstreamer-1.20.3/lib64" >> /etc/ld.so.conf.d/gstreamer-1.20.3.conf
ldconfig
cd ~
rm -rf gstreamer-1.20.3*
ccache -C
14 changes: 0 additions & 14 deletions install_gstreamer1205.sh

This file was deleted.

1 change: 1 addition & 0 deletions install_libbacktrace.sh
Original file line number Diff line number Diff line change
Expand Up @@ -7,3 +7,4 @@ CFLAGS=-fPIC ./configure
make install -j$(nproc)
cd ~
rm -rf libbacktrace
ccache -C
1 change: 1 addition & 0 deletions install_ninja1111.sh
Original file line number Diff line number Diff line change
Expand Up @@ -14,3 +14,4 @@ cd ninja-1.11.1
mkdir build;cd build;cmake ..;make install -j$(nproc)
cd ~
rm -rf ninja-*
ccache -C
1 change: 1 addition & 0 deletions install_webrtc.sh
Original file line number Diff line number Diff line change
Expand Up @@ -12,3 +12,4 @@ echo "/usr/local/lib64" >> /etc/ld.so.conf.d/webrtc.conf
ldconfig
cd ~
rm -rf libnice-0.1.19*
ccache -C
1 change: 1 addition & 0 deletions install_wrk420.sh
Original file line number Diff line number Diff line change
Expand Up @@ -9,3 +9,4 @@ make -j$(nproc)
cp wrk /usr/local/bin/
cd ~
rm -rf wrk-4.2.0*
ccache -C
1 change: 1 addition & 0 deletions install_zsh59.sh
Original file line number Diff line number Diff line change
Expand Up @@ -15,3 +15,4 @@ chsh -s /usr/local/bin/zsh
cd ~
rm -rf zsh-*
sh -c "$(curl -fsSL https://raw.githubusercontent.com/robbyrussell/oh-my-zsh/master/tools/install.sh)"
ccache -C

0 comments on commit 5886521

Please sign in to comment.