I have Ubuntu Studio 24.04.x on slow usb drive. I tried to get cingg sources there and compile her. It seems few packages changed their name (fftw3) or disappeared (python2) so I edited new case for our bld_prepare.sh script.
git am patch attached, but it will be nice if anyone tested that on another ubuntu 24.04.x system
From 386957956750d00c51b73068502830abe1891ea9 Mon Sep 17 00:00:00 2001 From: Andrew Randrianasulu <[email protected]> Date: Mon, 16 Dec 2024 08:48:51 +0300 Subject: [PATCH] Add ubuntu24 to bld_prepare.sh --- cinelerra-5.1/blds/bld_prepare.sh | 14 +++++++++++++- 1 file changed, 13 insertions(+), 1 deletion(-) diff --git a/cinelerra-5.1/blds/bld_prepare.sh b/cinelerra-5.1/blds/bld_prepare.sh index 0e7958d0..a90e3cab 100755 --- a/cinelerra-5.1/blds/bld_prepare.sh +++ b/cinelerra-5.1/blds/bld_prepare.sh @@ -7,7 +7,7 @@ fi if [ $# -ne 1 ]; then echo "usage: $0 <os>" - echo " <os> = [centos | suse | ubuntu | fedora | mint | debian | arch | debian-older | ubuntu-older]" + echo " <os> = [centos | suse | ubuntu | ubuntu24 | fedora | mint | debian | arch | debian-older | ubuntu-older]" fi dir="$1" @@ -117,6 +117,18 @@ case "$dir" in libpulse-dev libtool 2to3 python-is-python3 python2-minimal python2 dh-python \ patchelf libboost-filesystem-dev libboost-regex-dev libxml-parser-perl libimath-dev liblilv-dev ;; +#ub24.04 +"ubuntu24") + apt-get -y install apt-file sox nasm yasm g++ build-essential libz-dev \ texinfo libpng-dev freeglut3-dev libxv-dev libasound2-dev libbz2-dev \ + libncurses5-dev libxinerama-dev libfreetype6-dev libxft-dev libgif-dev \ + libtiff5-dev exuberant-ctags ttf-bitstream-vera xfonts-75dpi xfonts-100dpi \ + fonts-dejavu libopenexr-dev libavc1394-dev festival-dev lv2-dev libfftw3-dev gdb \ + libdc1394-25 libdc1394-dev libiec61883-dev libflac-dev libjbig-dev libusb-1.0-0-dev \ + libvdpau-dev libva-dev libsndfile1-dev libtheora-dev cmake udftools \ + libxml2-utils git inkscape autoconf automake debhelper libgtk2.0-dev \ + libpulse-dev libtool 2to3 python-is-python3 python3-minimal python3 dh-python \ + patchelf libboost-filesystem-dev libboost-regex-dev libxml-parser-perl libimath-dev liblilv-dev + ;; #debian for newest versions since about 06/2022 "debian") apt-get -f -y install apt-file sox nasm yasm g++ build-essential zlib1g-dev \ -- 2.47.1
-- Cin mailing list [email protected] https://lists.cinelerra-gg.org/mailman/listinfo/cin

