mirror of
https://github.com/outbackdingo/UltraGrid.git
synced 2026-03-21 02:40:14 +00:00
Ensure that /usr/local/{bin,include,lib} are created in scrips that copy
to that.
This is not problem for the CI because `.github/scripts/Windows/prepare_msys.sh`
already creates them but the scripts are standalone installers and it
can be run independently by a developer to install the particular dependency.
10 lines
338 B
Bash
Executable File
10 lines
338 B
Bash
Executable File
#!/bin/sh -eux
|
|
# Install SPOUT
|
|
|
|
git clone --depth 1 https://github.com/leadedge/Spout2.git
|
|
mkdir -p /usr/local/bin /usr/local/include /usr/local/lib
|
|
cp Spout2/BUILD/Binaries/x64/SpoutLibrary.dll /usr/local/bin
|
|
cp Spout2/BUILD/Binaries/x64/SpoutLibrary.lib /usr/local/lib
|
|
cp Spout2/SPOUTSDK/SpoutLibrary/SpoutLibrary.h /usr/local/include
|
|
|