diff options
Diffstat (limited to 'community/ffms2/PKGBUILD')
-rw-r--r-- | community/ffms2/PKGBUILD | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/community/ffms2/PKGBUILD b/community/ffms2/PKGBUILD index 0fd7ebeab..1f4451a3a 100644 --- a/community/ffms2/PKGBUILD +++ b/community/ffms2/PKGBUILD @@ -1,8 +1,8 @@ -# $Id: PKGBUILD 112694 2014-06-05 07:22:40Z alucryd $$ +# $Id: PKGBUILD 112748 2014-06-06 08:12:32Z alucryd $$ # Maintainer: Maxime Gauduin <alucryd@gmail.com> pkgname=ffms2 -pkgver=2.19.1 +pkgver=2.19.1.r120.9203af5 pkgrel=1 pkgdesc='A libav/ffmpeg based source library and Avisynth plugin for easy frame accurate access' arch=('i686' 'x86_64') @@ -11,18 +11,18 @@ license=('GPL') depends=('ffmpeg') makedepends=('git') provides=('vapoursynth-plugin-ffms2') -source=("https://github.com/FFMS/${pkgname}/archive/${pkgver}.tar.gz") -sha256sums=('39c8a5f6c6735d10b3b0a3830f71ef0182b42e747cbceb6bf9b8dcc0532c99db') +source=("git+https://github.com/FFMS/ffms2.git#commit=9203af5") +sha256sums=('SKIP') build() { - cd ${pkgname}-${pkgver} + cd ${pkgname} - ./configure --prefix='/usr' --enable-shared --disable-static --enable-avresample + ./autogen.sh --prefix='/usr' --enable-shared --disable-static --enable-avresample make } package() { - cd ${pkgname}-${pkgver} + cd ${pkgname} make DESTDIR="${pkgdir}" install |