summaryrefslogtreecommitdiff
path: root/community/ffmpegsource/PKGBUILD
diff options
context:
space:
mode:
Diffstat (limited to 'community/ffmpegsource/PKGBUILD')
-rwxr-xr-xcommunity/ffmpegsource/PKGBUILD15
1 files changed, 10 insertions, 5 deletions
diff --git a/community/ffmpegsource/PKGBUILD b/community/ffmpegsource/PKGBUILD
index 33e864022..eac86386e 100755
--- a/community/ffmpegsource/PKGBUILD
+++ b/community/ffmpegsource/PKGBUILD
@@ -1,9 +1,9 @@
-# $Id: PKGBUILD 84951 2013-02-26 15:11:09Z alucryd $
+# $Id: PKGBUILD 85215 2013-02-27 18:14:32Z alucryd $
# Maintainer: Maxime Gauduin <alucryd@gmail.com>
pkgname=ffmpegsource
pkgver=743
-pkgrel=1
+pkgrel=2
pkgdesc="A libav/ffmpeg based source library and Avisynth plugin for easy frame accurate access"
arch=('i686' 'x86_64')
url="http://code.google.com/p/ffmpegsource/"
@@ -11,14 +11,17 @@ license=('MIT')
depends=('ffmpeg')
makedepends=('svn')
options=('!libtool')
-source=('autoconf.patch')
-sha256sums=('b09a7e9a08a16bdaf19d43c7ad8d3ec455f6fecec2f4f5ada417345343adda93')
+source=('autoconf.patch' 'enable-libavresample.patch')
+sha256sums=('b09a7e9a08a16bdaf19d43c7ad8d3ec455f6fecec2f4f5ada417345343adda93'
+ '05f03515cc2405cdf8a8ba835f5adc2057f40054a4a1d9e493f0ad512c5de70d')
_svntrunk=http://ffmpegsource.googlecode.com/svn/trunk/
_svnmod=ffmpegsource
build() {
cd "${srcdir}"
+
+# Checkout
msg "Connecting to SVN server...."
if [[ -d ${_svnmod}/.svn ]]; then
@@ -31,11 +34,13 @@ build() {
msg "Starting build..."
rm -rf "${srcdir}"/${_svnmod}-build
- svn export "${srcdir}"/${_svnmod} "${srcdir}"/${_svnmod}-build
+# svn export "${srcdir}"/${_svnmod} "${srcdir}"/${_svnmod}-build
+ cp -R "${srcdir}"/${_svnmod} "${srcdir}"/${_svnmod}-build
cd "${srcdir}"/${_svnmod}-build
# Patch
patch -Np1 -i "${srcdir}"/autoconf.patch
+ patch -Np1 -i "${srcdir}"/enable-libavresample.patch
# Build
./autogen.sh --prefix=/usr --enable-shared --disable-static