Last active
January 27, 2024 09:25
-
-
Save keijiro/0cd095b54e5c2846fb683ad48e8292d2 to your computer and use it in GitHub Desktop.
Install the NDI shared library into a Linux system
This file contains hidden or 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
#!/bin/sh | |
DEST=/usr/local/lib/x86_64-linux-gnu | |
test -d $DEST || mkdir $DEST | |
cp -P lib/x86_64-linux-gnu/libndi.so* $DEST | |
ldconfig |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment