Update Package to Supply libvship
This commit is contained in:
@@ -1,7 +1,7 @@
|
|||||||
pkgbase = vapoursynth-plugin-vship-cuda-git
|
pkgbase = vapoursynth-plugin-vship-cuda-git
|
||||||
pkgdesc = Plugin for Vapoursynth: vship for nvidia gpus (GIT version)
|
pkgdesc = Plugin for Vapoursynth: vship for nvidia gpus (GIT version)
|
||||||
pkgver = 3.0.0.13.g1ed2fb3
|
pkgver = 4.0.0.21.g5308ad8
|
||||||
pkgrel = 1
|
pkgrel = 2
|
||||||
url = https://github.com/Line-fr/Vship
|
url = https://github.com/Line-fr/Vship
|
||||||
arch = x86_64
|
arch = x86_64
|
||||||
license = MIT
|
license = MIT
|
||||||
@@ -9,8 +9,11 @@ pkgbase = vapoursynth-plugin-vship-cuda-git
|
|||||||
makedepends = make
|
makedepends = make
|
||||||
depends = vapoursynth
|
depends = vapoursynth
|
||||||
depends = cuda
|
depends = cuda
|
||||||
|
optdepends = vapoursynth: vapoursynth plugin usage
|
||||||
provides = vapoursynth-plugin-vship
|
provides = vapoursynth-plugin-vship
|
||||||
|
provides = libvship
|
||||||
conflicts = vapoursynth-plugin-vship
|
conflicts = vapoursynth-plugin-vship
|
||||||
|
conflicts = libvship
|
||||||
source = vship::git+https://github.com/Line-fr/Vship.git
|
source = vship::git+https://github.com/Line-fr/Vship.git
|
||||||
sha256sums = SKIP
|
sha256sums = SKIP
|
||||||
|
|
||||||
|
|||||||
@@ -1,35 +1,35 @@
|
|||||||
# Maintainer: CreamSodass <greatvaluecreamsoda@gmail.com>
|
# Maintainer: CreamSodass <greatvaluecreamsoda@gmail.com>
|
||||||
|
|
||||||
_plug=vship
|
_plug=vship
|
||||||
pkgname=vapoursynth-plugin-${_plug}-cuda-git
|
pkgname=vapoursynth-plugin-vship-cuda-git
|
||||||
pkgrel=1
|
pkgrel=2
|
||||||
pkgver=3.0.0.13.g1ed2fb3
|
pkgver=4.0.0.21.g5308ad8
|
||||||
pkgdesc="Plugin for Vapoursynth: ${_plug} for nvidia gpus (GIT version)"
|
pkgdesc="Plugin for Vapoursynth: vship for nvidia gpus (GIT version)"
|
||||||
arch=('x86_64')
|
arch=('x86_64')
|
||||||
url='https://github.com/Line-fr/Vship'
|
url='https://github.com/Line-fr/Vship'
|
||||||
license=('MIT')
|
license=('MIT')
|
||||||
depends=('vapoursynth' 'cuda')
|
depends=('vapoursynth' 'cuda')
|
||||||
makedepends=('git' 'make')
|
makedepends=('git' 'make')
|
||||||
provides=("vapoursynth-plugin-${_plug}")
|
optdepends=('vapoursynth: vapoursynth plugin usage')
|
||||||
conflicts=("vapoursynth-plugin-${_plug}")
|
provides=("vapoursynth-plugin-vship" "libvship")
|
||||||
source=("${_plug}::git+https://github.com/Line-fr/Vship.git")
|
conflicts=("vapoursynth-plugin-vship" "libvship")
|
||||||
|
source=("vship::git+https://github.com/Line-fr/Vship.git")
|
||||||
sha256sums=('SKIP')
|
sha256sums=('SKIP')
|
||||||
|
|
||||||
build() {
|
build() {
|
||||||
cd "${_plug}"
|
cd "vship"
|
||||||
|
|
||||||
export PATH="/opt/cuda/bin:$PATH"
|
export PATH="/opt/cuda/bin:$PATH"
|
||||||
|
|
||||||
make buildcudaall
|
make buildcudaall
|
||||||
}
|
}
|
||||||
|
|
||||||
pkgver() {
|
pkgver() {
|
||||||
cd "${srcdir}/${_plug}"
|
cd "${srcdir}/vship"
|
||||||
# Generate pkgver like: v3.0.0.0.g7cd1d4f
|
# Generate pkgver like: v3.0.0.0.g7cd1d4f
|
||||||
git describe --tags --long | sed 's/^v//;s/-/./g'
|
git describe --tags --long | sed 's/^v//;s/-/./g'
|
||||||
}
|
}
|
||||||
|
|
||||||
package(){
|
package(){
|
||||||
cd "${_plug}"
|
cd "vship"
|
||||||
make PREFIX="/usr" DESTDIR="${pkgdir}" install
|
make PREFIX="/usr" DESTDIR="${pkgdir}" install
|
||||||
}
|
}
|
||||||
Reference in New Issue
Block a user