Package Details: vapoursynth-plugin-neo_f3kdb-git 9.0.g56bfb1b-1

Git Clone URL: https://aur.archlinux.org/foosynth-plugin-neo_f3kdb-git.git (read-only, click to copy)
Package Base: foosynth-plugin-neo_f3kdb-git
Description: Plugin for Vapoursynth: neo_f3kdb (GIT version)
Upstream URL: https://forum.doom9.org/showthread.php?t=176553
Keywords: avisynth vapoursynth
Licenses: GPL
Conflicts: vapoursynth-plugin-neo_f3kdb
Provides: vapoursynth-plugin-neo_f3kdb
Submitter: sl1pkn07
Maintainer: sl1pkn07
Last Packager: sl1pkn07
Votes: 3
Popularity: 0.63
First Submitted: 2020-04-18 08:45 (UTC)
Last Updated: 2024-05-19 21:42 (UTC)

Latest Comments

Rus commented on 2026-08-16 14:55 (UTC)

sl1pkn07, update VS plugins pleas

Vernox commented on 2026-08-16 14:02 (UTC)

Due to the vapoursynth release R74, the location of the .so needs to be modified.

Sample diff:

diff --git a/PKGBUILD b/PKGBUILD
index 8b2929b..c50d1a0 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -70,8 +70,10 @@ package_vapoursynth-plugin-neo_f3kdb-git() {
   )
   provides=("vapoursynth-plugin-${_plug}")
   conflicts=("vapoursynth-plugin-${_plug}")
+  local plugindir
+  plugindir=$(python3 -c "import vapoursynth; print(vapoursynth.get_plugin_dir())")

-  install -Dm755 "${_plug}/build/libneo-f3kdb.so" "${pkgdir}/usr/lib/vapoursynth/libneo-f3kdb.so"
+  install -Dm755 "${_plug}/build/libneo-f3kdb.so" "${pkgdir}${plugindir}/libneo-f3kdb.so"
   install -Dm644 "${_plug}/README.md" "${pkgdir}/usr/share/doc/vapoursynth/plugins/${_plug}/README.md"
 }

jholmer commented on 2024-05-19 21:37 (UTC)

tbb is marked as a make dependency, but it is needed at runtime

Rus commented on 2023-12-18 16:19 (UTC)

CMake Error at /usr/share/cmake/Modules/FindPackageHandleStandardArgs.cmake:230 (message): Could NOT find PkgConfig (missing: PKG_CONFIG_EXECUTABLE)
Call Stack (most recent call first):
/usr/share/cmake/Modules/FindPackageHandleStandardArgs.cmake:600 (_FPHSA_FAILURE_MESSAGE)
/usr/share/cmake/Modules/FindPkgConfig.cmake:99 (find_package_handle_standard_args)
CMakeLists.txt:23 (find_package)

sl1pkn07 commented on 2023-05-27 16:15 (UTC)

try now

trixsama commented on 2023-05-27 14:36 (UTC)

I had to use the same commands as the person bellow to get neo_f3kdb to be recognized. I also needed extra/tbb to compile and for some reason I may not understand, installing this package didn't install tbb even though it's in the dependencies list.

NSQY commented on 2022-01-01 15:14 (UTC) (edited on 2022-01-01 15:17 (UTC) by NSQY)

There seems to be an error in this PKGBUILD but I cannot find the issue. Sorry.

Installing via this package results in vapoursynth error: AttributeError: No attribute with the name neo_f3kdb exists. Did you mistype a plugin namespace?

If I pull the repo manually and compile with the following, there is no issue:

cmake -DCMAKE_BUILD_TYPE=Release -DCMAKE_INSTALL_PREFIX=/usr
make -j24
doas install -Dm755 libneo-f3kdb.so /usr/lib/vapoursynth

Win8Error commented on 2021-08-28 20:01 (UTC)

Please add tbb as make dependency.