To do a system build , you should read the file README that is at the top level after you get the source.
# This is where you need the 6.0GB of disk space: cd /<build_path>/ git clone --depth 1 https://git.cinelerra-gg.org/goodguy/cinelerra.git cinelerra # Change to the cloned directory: cd cinelerra/cinelerra-5.1 |
./blds/bld_prepare.sh <os> # where <os> represents the
# Operating System of
# centos, fedora, suse, ubuntu, ubuntu24, mint, debian, arch, debian-older, ubuntu-older.
./autogen.sh
./configure --prefix=/usr # optional parameters can be added here
make 2>&1 | tee log # make and log the build
|
You may want to review the bld_prepare.sh script before running it since the version of the Operating System you are using may require some tweaks to the list of packages to install. The script works for Arch with some additional information as shown in a README file containing many more dependencies. For Gentoo, only the README file lists the known dependencies that have to be installed manually.
Options in bld_prepare.sh of debian-older and ubuntu-older are currently for older operating system versions since before about 06/2022. The ubuntu24 option is for Ubuntu version 24 and newer ubuntu distros.
grep "\*\*\*.*error" -ai log |
/<build_path>/cinelerra/cinelerra-5.1/log |
make install |
The CINELERRA-GG Community, 2021