fixed error in build

This commit is contained in:
Chris Frankland-Wright 2025-06-23 16:19:12 +01:00
parent 45301469d6
commit e870f6b312

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 sudo apt install -y git curl python3 python3-pip build-essential autoconf automake libtool cmake
# --------------------------------------------------------- # ---------------------------------------------------------
# Step 3: Install audio and media dependencies # Step 3: Install audio and media dependencies
@ -36,6 +36,7 @@ echo "Step 3: Installing audio libraries and tools..."
sudo apt install -y alsa-utils ffmpeg \ sudo apt install -y alsa-utils ffmpeg \
portaudio19-dev python3-pyaudio \ portaudio19-dev python3-pyaudio \
libasound2-dev libjack-jackd2-dev \ libasound2-dev libjack-jackd2-dev \
libsndfile-dev \
|| echo "Warning: Some audio dependencies may have failed to install — continuing anyway." || echo "Warning: Some audio dependencies may have failed to install — continuing anyway."
# --------------------------------------------------------- # ---------------------------------------------------------
@ -58,9 +59,6 @@ fi
cd libltc cd libltc
echo "Installing libltc build dependencies..." echo "Installing libltc build dependencies..."
sudo apt install -y autoconf automake libtool
echo "Preparing libltc build..."
./autogen.sh ./autogen.sh
./configure ./configure