summaryrefslogtreecommitdiff
path: root/community/ffms2/PKGBUILD
diff options
context:
space:
mode:
Diffstat (limited to 'community/ffms2/PKGBUILD')
-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: