revisited!

This commit is contained in:
Chris Frankland-Wright 2025-06-23 16:11:46 +01:00
parent cabb03a1bd
commit c1608970e5

View file

@ -56,14 +56,20 @@ if [ ! -d "libltc" ]; then
git clone https://github.com/x42/libltc.git git clone https://github.com/x42/libltc.git
fi fi
cd libltc cd libltc
mkdir -p build && cd build
echo "Configuring libltc..." echo "Installing libltc build dependencies..."
cmake .. sudo apt install -y autoconf automake libtool
echo "Preparing libltc build..."
./autogen.sh
./configure
echo "Compiling libltc..." echo "Compiling libltc..."
make make
echo "Installing libltc..." echo "Installing libltc..."
sudo make install sudo make install
sudo ldconfig # refresh library cache so ld can find libltc sudo ldconfig
# --------------------------------------------------------- # ---------------------------------------------------------
# Step 6: Build and install ltc-tools # Step 6: Build and install ltc-tools
@ -77,7 +83,7 @@ if [ ! -d "ltc-tools" ]; then
fi fi
cd ltc-tools cd ltc-tools
echo "Compiling ltc-tools (telling it HAVE_LIBLTC=true)..." echo "Compiling ltc-tools (bypassing package check)..."
make HAVE_LIBLTC=true make HAVE_LIBLTC=true
echo "Installing ltc-tools..." echo "Installing ltc-tools..."