Inital commit
This commit is contained in:
@@ -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
|
||||||
@@ -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
|
||||||
|
}
|
||||||
Reference in New Issue
Block a user