commit 7ff39f467d88eed6863001f3a9727301c9f5965d Author: Patrick Date: Sun Jun 15 16:51:00 2025 +0000 Inital commit diff --git a/.SRCINFO b/.SRCINFO new file mode 100644 index 0000000..cc1c2bb --- /dev/null +++ b/.SRCINFO @@ -0,0 +1,17 @@ +pkgbase = vapoursynth-plugin-vship-cuda-git + pkgdesc = Plugin for Vapoursynth: vship-cuda (GIT version) + pkgver = 3.0.0.13.g1ed2fb3 + pkgrel = 1 + url = https://github.com/Line-fr/Vship + arch = x86_64 + license = MIT + makedepends = git + makedepends = make + depends = vapoursynth + depends = cuda + provides = vapoursynth-plugin-vship-cuda + conflicts = vapoursynth-plugin-vship-cuda + source = vship-cuda::git+https://github.com/Line-fr/Vship.git + sha256sums = SKIP + +pkgname = vapoursynth-plugin-vship-cuda-git diff --git a/PKGBUILD b/PKGBUILD new file mode 100644 index 0000000..ffd1c14 --- /dev/null +++ b/PKGBUILD @@ -0,0 +1,30 @@ +_plug=vship-cuda +pkgname=vapoursynth-plugin-${_plug}-git +pkgrel=1 +pkgver=3.0.0.13.g1ed2fb3 +pkgdesc="Plugin for Vapoursynth: ${_plug} (GIT version)" +arch=('x86_64') +url='https://github.com/Line-fr/Vship' +license=('MIT') +depends=('vapoursynth' 'cuda') +makedepends=('git' 'make') +provides=("vapoursynth-plugin-${_plug}") +conflicts=("vapoursynth-plugin-${_plug}") +source=("${_plug}::git+https://github.com/Line-fr/Vship.git") +sha256sums=('SKIP') + +build() { + cd "${_plug}" + make buildcudaall +} + +pkgver() { + cd "${srcdir}/${_plug}" + # Generate pkgver like: v3.0.0.0.g7cd1d4f + git describe --tags --long | sed 's/^v//;s/-/./g' +} + +package(){ + cd "${_plug}" + make PREFIX="/usr" DESTDIR="${pkgdir}" install +} \ No newline at end of file