Package Details: vapoursynth-plugin-hysteresis 1.2.0-1

Git Clone URL: https://aur.archlinux.org/vapoursynth-plugin-hysteresis.git (read-only, click to copy)
Package Base: vapoursynth-plugin-hysteresis
Description: Plugin for Vapoursynth: hysteresis
Upstream URL: https://github.com/sgt0/vapoursynth-hysteresis
Licenses: MIT
Submitter: jholmer
Maintainer: TheFeelTrain
Last Packager: TheFeelTrain
Votes: 0
Popularity: 0.000000
First Submitted: 2025-04-29 08:53 (UTC)
Last Updated: 2026-09-07 21:18 (UTC)

Latest Comments

Vernox commented on 2026-08-16 14:12 (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 4662156..892f8aa 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -21,7 +21,10 @@ build() {
 package() {
        cd "vapoursynth-${_plug}-${pkgver}"

-       install -Dm644 target/release/libhysteresis.so "${pkgdir}/usr/lib/vapoursynth/libhysteresis.so"
+       local plugindir
+       plugindir=$(python3 -c "import vapoursynth; print(vapoursynth.get_plugin_dir())")
+
+       install -Dm644 target/release/libhysteresis.so "${pkgdir}${plugindir}/libhysteresis.so"
        install -Dm644 README.md "${pkgdir}/usr/share/doc/vapoursynth/plugins/${_plug}/README.md"
        install -Dm644 LICENSE.md "${pkgdir}/usr/share/doc/vapoursynth/plugins/${_plug}/LICENSE.md"
 }