-
-
Notifications
You must be signed in to change notification settings - Fork 372
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #919 from obs-ndi/develop
Preparing for 4.12.0 release
- Loading branch information
Showing
24 changed files
with
1,255 additions
and
788 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,7 @@ | ||
#!/bin/bash | ||
|
||
# This script is called by CI/libndi-package.sh | ||
|
||
set -ex | ||
|
||
SDK_ROOT="/tmp/ndisdk" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,7 @@ | ||
#!/bin/bash | ||
|
||
# This script is called by CI/libndi-package.sh | ||
|
||
set -ex | ||
|
||
SDK_ROOT="/tmp/ndisdk" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,25 +1,25 @@ | ||
#!/bin/bash | ||
|
||
set -e | ||
|
||
LIBNDI_INSTALLER_NAME="Install_NDI_SDK_v5_Linux" | ||
LIBNDI_INSTALLER="$LIBNDI_INSTALLER_NAME.tar.gz" | ||
LIBNDI_INSTALLER_SHA256="00d0bedc2c72736d82883fc0fd6bc1a544e7958c7e46db79f326633d44e15153" | ||
|
||
#sudo apt-get install curl | ||
|
||
pushd /tmp | ||
|
||
curl -L -o $LIBNDI_INSTALLER https://downloads.ndi.tv/SDK/NDI_SDK_Linux/$LIBNDI_INSTALLER -f --retry 5 | ||
echo "$LIBNDI_INSTALLER_SHA256 $LIBNDI_INSTALLER" | sha256sum -c | ||
tar -xf $LIBNDI_INSTALLER | ||
yes | PAGER="cat" sh $LIBNDI_INSTALLER_NAME.sh | ||
|
||
rm -rf /tmp/ndisdk | ||
mv "/tmp/NDI SDK for Linux" /tmp/ndisdk | ||
ls /tmp/ndisdk | ||
|
||
# NOTE: This does an actual local install... | ||
#sudo cp -P ndisdk/lib/x86_64-linux-gnu/* /usr/local/lib/ | ||
#sudo ldconfig | ||
if [ $1 == "install" ]; then | ||
# NOTE: This should do an actual local install... | ||
sudo cp -P /tmp/ndisdk/lib/x86_64-linux-gnu/* /usr/local/lib/ | ||
sudo ldconfig | ||
fi | ||
|
||
popd |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.