mirror of
https://github.com/Palakis/obs-websocket.git
synced 2024-08-30 18:12:16 +00:00
20 lines
407 B
Bash
Executable File
20 lines
407 B
Bash
Executable File
#!/bin/sh
|
|
set -ex
|
|
|
|
sudo add-apt-repository -y ppa:obsproject/obs-studio
|
|
sudo apt-get -qq update
|
|
|
|
sudo apt-get install -y \
|
|
libc-dev-bin \
|
|
libc6-dev git \
|
|
build-essential \
|
|
checkinstall \
|
|
cmake \
|
|
obs-studio \
|
|
qtbase5-dev
|
|
|
|
# Dirty hack
|
|
sudo wget -O /usr/include/obs/obs-frontend-api.h https://raw.githubusercontent.com/obsproject/obs-studio/26.0.0/UI/obs-frontend-api/obs-frontend-api.h
|
|
|
|
sudo ldconfig
|