fix break in cmake

This commit is contained in:
Chris Frankland-Wright 2025-06-23 15:48:45 +01:00
parent 83e6581104
commit 134c203675

View file

@ -26,7 +26,7 @@ sudo apt upgrade -y
# --------------------------------------------------------- # ---------------------------------------------------------
echo "" echo ""
echo "Step 2: Installing development tools..." echo "Step 2: Installing development tools..."
sudo apt install -y git curl python3 python3-pip build-essential cmake sudo apt install -y git curl python3 python3-pip build-essential
# --------------------------------------------------------- # ---------------------------------------------------------
# Step 3: Install audio and media dependencies # Step 3: Install audio and media dependencies
@ -55,11 +55,19 @@ if ! command -v ltcdump >/dev/null 2>&1; then
git clone https://github.com/x42/ltc-tools.git git clone https://github.com/x42/ltc-tools.git
fi fi
cd ltc-tools cd ltc-tools
mkdir -p build && cd build
echo "Running CMake configuration..." echo "Installing autotools build dependencies..."
cmake .. sudo apt install -y autoconf automake libtool
echo "Preparing build system..."
./autogen.sh
echo "Configuring build..."
./configure
echo "Compiling ltc-tools..." echo "Compiling ltc-tools..."
make make
echo "Installing ltc-tools binaries..." echo "Installing ltc-tools binaries..."
sudo make install sudo make install
sudo ldconfig sudo ldconfig