Two solutions then, as the Arch repo provides only the main version:
-
Compile RT yourself from source, by pulling code from
newlocallabbranch -
Use the
rawtherapee-gitpackage from the AUR repo, and modify the build script to get the code fromnewlocallabbranch
Below is the part of the build script you need to modify, by just adding the 2 lines in bold font face:
build() {
mkdir -p “$srcdir/rawtherapee-build”
cd $srcdir/rawtherapee
git checkout newlocallab
cd “$srcdir/rawtherapee-build”
cmake …/rawtherapee
-DCMAKE_INSTALL_PREFIX=/usr
-DCMAKE_BUILD_TYPE=Release
make
}
If you need more assistance, feel free to ask.