diff options
author | sL1pKn07 | 2023-05-01 22:04:12 +0200 |
---|---|---|
committer | sL1pKn07 | 2023-05-01 22:04:12 +0200 |
commit | 66d41a7e1cf3b4ffc9bfcdc8835380ac0d69922e (patch) | |
tree | 50831e196387c60937efb07d846f677538ff257b | |
parent | ec6c1e07a2640220695573a364127d197f761695 (diff) | |
download | aur-vapoursynth-plugin-vcm-git.tar.gz |
bump
-rw-r--r-- | .SRCINFO | 2 | ||||
-rw-r--r-- | PKGBUILD | 4 |
2 files changed, 3 insertions, 3 deletions
@@ -1,6 +1,6 @@ pkgbase = vapoursynth-plugin-vcm-git pkgdesc = Plugin for Vapoursynth: vcm (GITversion) - pkgver = 2022.02.10.AC.4.gc770bbc + pkgver = 2022.02.10.AC3.0.gff2d3cf pkgrel = 1 url = https://forum.doom9.org/showthread.php?t=172594 arch = x86_64 @@ -2,7 +2,7 @@ _plug=vcm pkgname=vapoursynth-plugin-${_plug}-git -pkgver=2022.02.10.AC.4.gc770bbc +pkgver=2022.02.10.AC3.0.gff2d3cf pkgrel=1 pkgdesc="Plugin for Vapoursynth: ${_plug} (GITversion)" arch=('x86_64') @@ -56,5 +56,5 @@ build() { package(){ DESTDIR="${pkgdir}" ninja -C build install - (cd "${_plug}/docs"; for i in *.html vcmisc0.png ; do install -Dm644 "${i}" "${pkgdir}/usr/share/doc/vapoursynth/plugins/${_plug}/${i}"; done) + (cd "${_plug}/docs"; for i in $(find . -type f); do install -Dm644 "${i}" "${pkgdir}/usr/share/doc/vapoursynth/plugins/${_plug}/${i}"; done) } |