Date: Tuesday, December 2, 2014 @ 10:34:48 Author: alucryd Revision: 123345
Add FluxSmooth and MVTools VS plugins Added: vapoursynth-plugin-fluxsmooth/ vapoursynth-plugin-fluxsmooth/trunk/ vapoursynth-plugin-fluxsmooth/trunk/PKGBUILD vapoursynth-plugin-mvtools/ vapoursynth-plugin-mvtools/trunk/ vapoursynth-plugin-mvtools/trunk/PKGBUILD ----------------------------------------------+ vapoursynth-plugin-fluxsmooth/trunk/PKGBUILD | 37 +++++++++++++++++++++++++ vapoursynth-plugin-mvtools/trunk/PKGBUILD | 35 +++++++++++++++++++++++ 2 files changed, 72 insertions(+) Added: vapoursynth-plugin-fluxsmooth/trunk/PKGBUILD =================================================================== --- vapoursynth-plugin-fluxsmooth/trunk/PKGBUILD (rev 0) +++ vapoursynth-plugin-fluxsmooth/trunk/PKGBUILD 2014-12-02 09:34:48 UTC (rev 123345) @@ -0,0 +1,37 @@ +# $Id$ +# Maintainer: Maxime Gauduin <[email protected]> +# Contributor: Gustavo Alvarez <[email protected]> + +pkgname=vapoursynth-plugin-fluxsmooth +pkgver=1.0 +pkgrel=1 +pkgdesc='FluxSmooth plugin for VapourSynth' +arch=('i686' 'x86_64') +url='https://github.com/dubhater/vapoursynth-fluxsmooth' +license=('None') +depends=('vapoursynth') +[[ $CARCH == 'x86_64' ]] && makedepends=('yasm') +source=("vapoursynth-plugin-fluxsmooth-${pkgver}.tar.gz::https://github.com/dubhater/vapoursynth-fluxsmooth/archive/v${pkgver}.tar.gz") +sha256sums=('f178f81a8b3f4a33896903024084d8f877cebf0f9e4d4b4729f787311a25198b') + +build() { + cd vapoursynth-fluxsmooth-${pkgver} + + export LDFLAGS="$LDFLAGS,-z,noexecstack" + + ./autogen.sh + ./configure \ + --prefix='/usr' \ + --libdir='/usr/lib/vapoursynth' + make +} + +package(){ + cd vapoursynth-fluxsmooth-${pkgver} + + make DESTDIR="${pkgdir}" install + install -dm 755 "${pkgdir}"/usr/share/doc/vapoursynth/plugins/FluxSmooth + install -m 644 readme.rst "${pkgdir}"/usr/share/doc/vapoursynth/plugins/FluxSmooth/README +} + +#vim: ts=2 sw=2 et: Property changes on: vapoursynth-plugin-fluxsmooth/trunk/PKGBUILD ___________________________________________________________________ Added: svn:keywords ## -0,0 +1 ## +Id \ No newline at end of property Added: vapoursynth-plugin-mvtools/trunk/PKGBUILD =================================================================== --- vapoursynth-plugin-mvtools/trunk/PKGBUILD (rev 0) +++ vapoursynth-plugin-mvtools/trunk/PKGBUILD 2014-12-02 09:34:48 UTC (rev 123345) @@ -0,0 +1,35 @@ +# $Id$ +# Maintainer: Maxime Gauduin <[email protected]> +# Contributor: Gustavo Alvarez <[email protected]> + +pkgname=vapoursynth-plugin-mvtools +pkgver=4 +pkgrel=1 +pkgdesc='MVTools plugin for VapourSynth' +arch=('i686' 'x86_64') +url='https://github.com/dubhater/vapoursynth-mvtools' +license=('GPL2') +depends=('vapoursynth') +makedepends=('yasm') +source=("vapoursynth-plugin-mvtools-${pkgver}.tar.gz::https://github.com/dubhater/vapoursynth-mvtools/archive/v${pkgver}.tar.gz") +sha256sums=('1671ec4c02a78f76876eb2f2070d9be4ea64db3d030c8cb4337883ee97dc1edd') + +build() { + cd vapoursynth-mvtools-${pkgver} + + ./autogen.sh + ./configure \ + --prefix='/usr' \ + --libdir='/usr/lib/vapoursynth' + make +} + +package(){ + cd vapoursynth-mvtools-${pkgver} + + make DESTDIR="${pkgdir}" install + install -dm 755 "${pkgdir}"/usr/share/doc/vapoursynth/plugins/MVTools + install -m 644 readme.rst "${pkgdir}"/usr/share/doc/vapoursynth/plugins/MVTools/README +} + +#vim: ts=2 sw=2 et: Property changes on: vapoursynth-plugin-mvtools/trunk/PKGBUILD ___________________________________________________________________ Added: svn:keywords ## -0,0 +1 ## +Id \ No newline at end of property
