summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: 1daa81cb10e0def9371f4242d4c7b4dfc2370eac (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
# Maintainer: Gustavo Alvarez <sl1pkn07@gmail.com>

_plug=averagehist
pkgname=vapoursynth-plugin-${_plug}
pkgver=r0
pkgrel=6
pkgdesc="Plugin for Vapoursynth: ${_plug}"
arch=('any')
url='http://forum.doom9.org/showthread.php?t=168521'
license=('GPL')
depends=('vapoursynth-plugin-histogram-git')
source=('averagehist.py')
sha256sums=('728334aa284a87c123c1d4a91b6ec826c07c46d56754532743d6e18cc60d01de')

_site_packages="$(python -c "from distutils.sysconfig import get_python_lib; print(get_python_lib())")"

package(){
  install -Dm644 "${_plug}.py" "${pkgdir}${_site_packages}/${_plug}.py"
  python -m compileall -q -f -d "${_site_packages}" "${pkgdir}${_site_packages}/${_plug}.py"
  python -OO -m compileall -q -f -d "${_site_packages}" "${pkgdir}${_site_packages}/${_plug}.py"
}