Skip to content

Instantly share code, notes, and snippets.

@keijiro
Last active January 27, 2024 09:25
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
Star You must be signed in to star a gist
Save keijiro/0cd095b54e5c2846fb683ad48e8292d2 to your computer and use it in GitHub Desktop.
Install the NDI shared library into a Linux system
#!/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