summarylogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--.SRCINFO6
-rw-r--r--PKGBUILD13
2 files changed, 10 insertions, 9 deletions
diff --git a/.SRCINFO b/.SRCINFO
index d7b0f84aaa1c..6c65c7dbc790 100644
--- a/.SRCINFO
+++ b/.SRCINFO
@@ -1,9 +1,9 @@
# Generated by mksrcinfo v8
-# Thu Nov 9 17:52:38 UTC 2017
+# Thu Nov 9 17:56:09 UTC 2017
pkgbase = ffmpeg-full-git
pkgdesc = Record, convert and stream audio and video (all possible features including nvenc, qsv and libfdk-aac; git version)
- pkgver = 3.5.r88519.gcf5a6c754a
- pkgrel = 2
+ pkgver = 3.5.r88673.gdfa859b85a
+ pkgrel = 1
url = http://www.ffmpeg.org/
arch = i686
arch = x86_64
diff --git a/PKGBUILD b/PKGBUILD
index 8bea0e7fb2e0..6866fbbf450c 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -5,8 +5,8 @@
# and add '--enable-libndi_newtek' to the configure options.
pkgname=ffmpeg-full-git
-pkgver=3.5.r88519.gcf5a6c754a
-pkgrel=2
+pkgver=3.5.r88673.gdfa859b85a
+pkgrel=1
pkgdesc='Record, convert and stream audio and video (all possible features including nvenc, qsv and libfdk-aac; git version)'
arch=('i686' 'x86_64')
url='http://www.ffmpeg.org/'
@@ -71,7 +71,7 @@ build() {
local _cudasdk='--enable-cuda-sdk'
local _cuvid='--enable-cuvid'
local _libnpp='--enable-libnpp'
- local _cflags='--extra-cflags=-I/opt/cuda/include'
+ local _cflags='-I/opt/cuda/include'
# '-L/usr/lib/nvidia' (for cuda_sdk) needs to be enabled only on
# systems with nvidia-340xx-utils or nvidia-304xx-utils
@@ -80,7 +80,8 @@ build() {
then
local _nvidia_340xx_ldflags='-L/usr/lib/nvidia'
fi
- local _ldflags="--extra-ldflags=-L/opt/cuda/lib64 ${_nvidia_340xx_ldflags}"
+
+ local _ldflags="-L/opt/cuda/lib64 ${_nvidia_340xx_ldflags}"
local _ldflags="${_ldflags} -Wl,-rpath -Wl,/opt/intel/mediasdk/lib64:/opt/intel/mediasdk/plugins"
# strictly specifying nvcc path is needed if package is installing
@@ -92,8 +93,8 @@ build() {
./configure \
--prefix='/usr' \
- $_cflags \
- "$_ldflags" \
+ --extra-cflags="${_cflags}" \
+ --extra-ldflags="${_ldflags}" \
\
--disable-rpath \
--enable-gpl \