summaryrefslogtreecommitdiff
path: root/community/ffms2
diff options
context:
space:
mode:
authorNicolás Reynolds <fauno@endefensadelsl.org>2014-02-13 03:18:35 +0000
committerNicolás Reynolds <fauno@endefensadelsl.org>2014-02-13 03:18:35 +0000
commitb6ad8075baf858359209aa7f1af82a143dcc0c80 (patch)
tree905bbb7a639842e49556d2aafa014d77be7d81ea /community/ffms2
parente3fe31f4a2c44fef8da55c60c3f95a763fdfd3c7 (diff)
Thu Feb 13 03:16:56 UTC 2014
Diffstat (limited to 'community/ffms2')
-rw-r--r--community/ffms2/PKGBUILD19
1 files changed, 9 insertions, 10 deletions
diff --git a/community/ffms2/PKGBUILD b/community/ffms2/PKGBUILD
index 74d0e96b1..9223888cc 100644
--- a/community/ffms2/PKGBUILD
+++ b/community/ffms2/PKGBUILD
@@ -1,22 +1,22 @@
-# $Id: PKGBUILD 99739 2013-10-30 23:25:12Z allan $$
+# $Id: PKGBUILD 105637 2014-02-12 15:41:55Z alucryd $$
# Maintainer: Maxime Gauduin <alucryd@gmail.com>
pkgname=ffms2
pkgver=2.19
-pkgrel=1
-pkgdesc="A libav/ffmpeg based source library and Avisynth plugin for easy frame accurate access"
+pkgrel=2
+pkgdesc='A libav/ffmpeg based source library and Avisynth plugin for easy frame accurate access'
arch=('i686' 'x86_64')
-url="https://github.com/FFMS/ffms2"
-license=('MIT')
+url='https://github.com/FFMS/ffms2'
+license=('GPL')
depends=('ffmpeg')
-replaces=('ffmpegsource')
+provides=('vapoursynth-plugin-ffms2')
source=("https://github.com/FFMS/ffms2/archive/${pkgver}.tar.gz")
sha256sums=('6f1379514f03a14092fdfc9941960a9b86f5b78d86f9e000eeddf3bf50d42811')
build() {
cd ${pkgname}-${pkgver}
- ./configure --prefix='/usr' --enable-shared --disable-static
+ ./configure --prefix='/usr' --enable-shared --disable-static --enable-avresample
make
}
@@ -25,9 +25,8 @@ package() {
make DESTDIR="${pkgdir}" install
-# License
- install -dm 755 "${pkgdir}"/usr/share/licenses/${pkgname}
- install -m 644 {,"${pkgdir}"/usr/share/licenses/${pkgname}/}COPYING
+ install -dm 755 "${pkgdir}"/usr/lib/vapoursynth
+ ln -s ../libffms2.so "${pkgdir}"/usr/lib/vapoursynth/
}
# vim: ts=2 sw=2 et: