Package Details: obs-image-reaction 1.2-1

Git Clone URL: https://aur.archlinux.org/obs-image-reaction.git (read-only, click to copy)
Package Base: obs-image-reaction
Description: OBS Plugin with image that reacts to sound source.
Upstream URL: https://github.com/scaledteam/obs-image-reaction
Keywords: audio obs obs-plugin obs-studio plugin sound
Licenses: GPL2
Conflicts: obs-image-reaction-bin, obs-image-reaction-git
Provides: obs-image-reaction
Submitter: brodi1
Maintainer: brodi1
Last Packager: brodi1
Votes: 1
Popularity: 0.000000
First Submitted: 2021-08-23 07:42 (UTC)
Last Updated: 2021-09-09 20:38 (UTC)

Latest Comments

nxsols commented on 2024-01-26 20:41 (UTC)

A somewhat crude build fix:

build() {
        cd ${srcdir}/obs-${_pluginname}-${pkgver}
        sed -i "s/find_package(LibObs REQUIRED)/find_package(libobs REQUIRED)/" CMakeLists.txt
        cmake -B build \
          -DCMAKE_INSTALL_PREFIX=/usr \
          -DLIBOBS_INCLUDE_DIR=/usr/include/obs \
          -DCMAKE_BUILD_TYPE=Release \
          -Wno-dev
        cmake --build build
}