At the moment the official build instruction included the cmake option -DENABLE_AJA=0. The building failed for me until I added this option to the cmake command in the build function of this PKGBUILD. I don't know enough about obs (or cpp in general) but if your build fails please consider this. Here's my complete build function:
build() {
cmake -B build -S $pkgname \
-DCMAKE_INSTALL_PREFIX=/usr \
-DCMAKE_INSTALL_LIBDIR=lib \
-DBUILD_BROWSER=ON \
-DCEF_ROOT_DIR="/opt/cef-obs" \
-DENABLE_LIBFDK=ON \
-DENABLE_AJA=0 \
-Wno-dev
cmake --build build
}
Pinned Comments
thotypous commented on 2021-02-05 14:12 (UTC)
If you don't want to build this package yourself, hourly builds are available at https://aur.chaotic.cx
benklett commented on 2016-02-06 23:11 (UTC) (edited on 2016-08-10 14:01 (UTC) by benklett)