From aebf7fe32548cb6858ea1e68855e4c66f4bfb79f Mon Sep 17 00:00:00 2001 From: Christoph Reiter Date: Fri, 20 Oct 2017 08:32:39 +0200 Subject: [PATCH] gst-libav: Build with system ffmpeg instead of internal one (#3066) No need to include ffmpeg since it's likely getting pulled in by something else anyway. This is also what Arch Linux does. --- mingw-w64-gst-libav/PKGBUILD | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/mingw-w64-gst-libav/PKGBUILD b/mingw-w64-gst-libav/PKGBUILD index a1195f74f2..e2714873b3 100644 --- a/mingw-w64-gst-libav/PKGBUILD +++ b/mingw-w64-gst-libav/PKGBUILD @@ -4,17 +4,16 @@ _realname=gst-libav pkgbase=mingw-w64-${_realname} pkgname="${MINGW_PACKAGE_PREFIX}-${_realname}" pkgver=1.12.3 -pkgrel=1 +pkgrel=2 pkgdesc="GStreamer libav (mingw-w64)" arch=('any') url="https://gstreamer.freedesktop.org/" license=("LGPL") makedepends=("${MINGW_PACKAGE_PREFIX}-gcc" "${MINGW_PACKAGE_PREFIX}-pkg-config" - "${MINGW_PACKAGE_PREFIX}-python2" - "yasm") -depends=("${MINGW_PACKAGE_PREFIX}-bzip2" - "${MINGW_PACKAGE_PREFIX}-gst-plugins-base") + "${MINGW_PACKAGE_PREFIX}-python2") +depends=("${MINGW_PACKAGE_PREFIX}-gst-plugins-base" + "${MINGW_PACKAGE_PREFIX}-ffmpeg") options=(!libtool strip staticlibs) source=(${url}/src/${_realname}/${_realname}-${pkgver}.tar.xz) sha256sums=('015ef8cab6f7fb87c8fb42642486423eff3b6e6a6bccdcd6a189f436a3619650') @@ -38,7 +37,8 @@ build() { --disable-static \ --enable-shared \ --enable-silent-rules \ - --disable-gtk-doc + --disable-gtk-doc \ + --with-system-libav make }