summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: d23d97518ac38135583674f36d59f0c18b4fdb70 (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
31
32
33
34
35
36
37
38
39
40
# Maintainer:  Gustavo Alvarez <sl1pkn07@gmail.com>

_plug=cmedian
pkgname=vapoursynth-plugin-${_plug}-hg
pkgver=9.46063df02b42
pkgrel=1
pkgdesc="Plugin for Vapoursynth: ${_plug} (HG version)"
arch=('i686' 'x86_64')
url='https://bitbucket.org/James1201/vapoursynth-cmedian'
license=('LGPL2.1')
depends=('vapoursynth')
makedepends=('mercurial')
provides=("vapoursynth-plugin-${_plug}")
conflicts=("vapoursynth-plugin-${_plug}")
source=("${_plug}::hg+https://bitbucket.org/James1201/vapoursynth-cmedian")
sha1sums=('SKIP')

pkgver() {
  cd "${_plug}"
  echo "$(hg log -r -1 --template '{rev}.{node|short}\n')"
}

prepare() {
  cd "${_plug}"
  chmod +x autogen.sh
  ./autogen.sh
}

build() {
  cd "${_plug}"
  ./configure \
    --libdir="/usr/lib/vapoursynth"
  make
}

package(){
  cd "${_plug}"
  make DESTDIR="${pkgdir}" install
  install -Dm644 README.md "${pkgdir}/usr/share/doc/vapoursynth/plugins/${_plug}/README.md"
}