obs-studio/main.sh

32 lines
825 B
Bash
Raw Normal View History

2023-03-04 19:20:25 +01:00
#! /bin/bash
2023-03-04 19:28:20 +01:00
set -e
2023-06-16 20:24:23 +02:00
2023-03-04 18:33:16 +01:00
# Clone Upstream
2023-03-08 15:56:39 +01:00
git clone --recursive https://github.com/obsproject/obs-studio.git
2023-04-28 20:14:47 +02:00
2023-04-28 19:26:48 +02:00
cp -rvf ./debian ./obs-studio/
2023-03-04 18:33:16 +01:00
cd ./obs-studio
2023-04-30 19:05:22 +02:00
wget https://cdn-fastly.obsproject.com/downloads/cef_binary_5060_linux64.tar.bz2
tar -xf ./cef_binary_5060_linux64.tar.bz2 -C ./
2023-04-30 19:42:04 +02:00
git clone https://github.com/aja-video/ntv2.git
2023-04-28 19:16:31 +02:00
2023-04-28 22:11:16 +02:00
# remove -Werror flag to mitigate FTBFS with ffmpeg
2023-04-28 21:41:22 +02:00
sed -i 's|-Werror-implicit-function-declaration||g' CMakeLists.txt
## remove Werror to fix compile error
sed -i 's| -Werror||g' cmake/Modules/CompilerConfig.cmake
2023-04-28 21:54:33 +02:00
sed -i 's| -Wswitch||g' cmake/Modules/CompilerConfig.cmake
2023-04-28 21:41:22 +02:00
2023-04-28 21:02:44 +02:00
for i in ../patches/*.patch; do patch -Np1 -i $i ;done
2023-03-04 18:33:16 +01:00
2023-04-28 19:26:48 +02:00
# Get build deps brute force
2023-04-30 19:05:22 +02:00
apt-get build-dep -y ./
2023-03-04 18:33:16 +01:00
2023-04-30 19:05:22 +02:00
dpkg-buildpackage --no-sign
2023-04-28 19:16:31 +02:00
2023-03-04 18:33:16 +01:00
# Move the debs to output
2023-04-28 20:14:47 +02:00
cd ../
2023-04-30 19:05:22 +02:00
mkdir -p ./output
mv ./*.deb ./output/