blob: ffd1c14a112dda6e56028358da00c726dfeb23ba (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
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
}
|