Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix missing dependencies #28

Open
wants to merge 5 commits into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 5 additions & 3 deletions build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ InstallDependencies() {
libjack-jackd2-dev libxcomposite-dev x11proto-composite-dev \
libx264-dev libgl1-mesa-dev libglu1-mesa-dev libasound2-dev \
libpulse-dev libx11-dev libxext-dev libxfixes-dev \
libxi-dev qt5-default qttools5-dev qt5-qmake qtbase5-dev
libxi-dev qt5-default qttools5-dev qt5-qmake qtbase5-dev libmbedtls-dev
}

# TODO Detect running system
Expand All @@ -83,10 +83,12 @@ InstallNvidiaSDK() {
}

InstallNvCodecIncludes() {
echo "Installing Nv codec headers from https://github.com/FFmpeg/nv-codec-headers"
echo "Installing Nv codec headers from VideoLAN"
cd "$source_dir"
git clone https://github.com/FFmpeg/nv-codec-headers
git clone https://git.videolan.org/git/ffmpeg/nv-codec-headers.git
cd nv-codec-headers
make
sudo make install
cp -a include/ffnvcodec "$inc_dir"
}

Expand Down