diff options
author | sL1pKn07 | 2018-06-16 15:29:13 +0200 |
---|---|---|
committer | sL1pKn07 | 2018-06-16 15:29:13 +0200 |
commit | 3b6dd52889db4b1552a59083066e6ad7c6b14350 (patch) | |
tree | fcfe177b270b2fe557b7fd8599d0c6ecc4e1c093 /PKGBUILD | |
parent | 4d5519cbf59902e3f1f4909232ddf046f8622668 (diff) | |
download | aur-3b6dd52889db4b1552a59083066e6ad7c6b14350.tar.gz |
bump
Diffstat (limited to 'PKGBUILD')
-rw-r--r-- | PKGBUILD | 25 |
1 files changed, 13 insertions, 12 deletions
@@ -2,14 +2,16 @@ _plug=awarpsharp2 pkgname=vapoursynth-plugin-${_plug}-git -pkgver=v3.0.g769e2be +pkgver=v4.0.g886d4b7 pkgrel=1 pkgdesc="Plugin for Vapoursynth: ${_plug} (GIT version)" arch=('i686' 'x86_64') url='http://forum.doom9.org/showthread.php?t=172721' license=('GPL2') depends=('vapoursynth') -makedepends=('git') +makedepends=('git' + 'meson' + ) provides=("vapoursynth-plugin-${_plug}") conflicts=("vapoursynth-plugin-${_plug}") source=("${_plug}::git+https://github.com/dubhater/vapoursynth-${_plug}.git") @@ -21,20 +23,19 @@ pkgver() { } prepare() { - cd "${_plug}" - ./autogen.sh + mkdir -p build + + cd build + arch-meson "../${_plug}" \ + --libdir /usr/lib/vapoursynth + } build() { - cd "${_plug}" - ./configure \ - --prefix=/usr \ - --libdir=/usr/lib/vapoursynth - make + ninja -C build } package(){ - cd "${_plug}" - make DESTDIR="${pkgdir}" install - install -Dm644 readme.rst "${pkgdir}/usr/share/doc/vapoursynth/plugins/${_plug}/readme.rst" + DESTDIR="${pkgdir}" ninja -C build install + install -Dm644 "${_plug}/readme.rst" "${pkgdir}/usr/share/doc/vapoursynth/plugins/${_plug}/readme.rst" } |