diff options
author | Andreas Grapentin <andreas@grapentin.org> | 2018-01-23 05:43:47 +0100 |
---|---|---|
committer | Andreas Grapentin <andreas@grapentin.org> | 2018-01-23 05:43:47 +0100 |
commit | 8379ff65c06691e5b412359bbd87fd4c12cccb0d (patch) | |
tree | 4a71b11f12d48943853c742c80e1ab8793702a20 | |
parent | ca415ab5ed2c574ba4f4a45467b935b8f6087ed3 (diff) | |
download | abslibre-8379ff65c06691e5b412359bbd87fd4c12cccb0d.tar.gz abslibre-8379ff65c06691e5b412359bbd87fd4c12cccb0d.tar.bz2 abslibre-8379ff65c06691e5b412359bbd87fd4c12cccb0d.zip |
pcr/shotcut: updated to 18.01
-rw-r--r-- | pcr/shotcut/PKGBUILD | 15 |
1 files changed, 11 insertions, 4 deletions
diff --git a/pcr/shotcut/PKGBUILD b/pcr/shotcut/PKGBUILD index 4b39020c1..8096934f3 100644 --- a/pcr/shotcut/PKGBUILD +++ b/pcr/shotcut/PKGBUILD @@ -1,11 +1,15 @@ + +# parabola changes and rationale: +# no changes. + # shellcheck disable=SC2034,SC2154,SC2164 pkgname=('shotcut') _srcname='shotcut' pkgdesc='Video editor' -pkgver='17.04' -_commit='8de07dafef1d3685f902f6298d00bc5f746e12f6' +pkgver='18.01' +_commit='5d86a8616a29cd8cf4d7d69794b70551c5de8bf4' pkgrel='1' -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'armv7h') url='https://www.shotcut.org/' license=('GPL3') @@ -19,6 +23,7 @@ depends=( 'qt5-websockets' 'qt5-x11extras' 'mlt' + 'movit' 'ffmpeg' 'libx264' 'libvpx' @@ -50,7 +55,9 @@ prepare() { build() { cd "${srcdir}/${_srcname}" - qmake PREFIX='/usr/' + qmake PREFIX='/usr' \ + QMAKE_CFLAGS_RELEASE="${CFLAGS}" \ + QMAKE_CXXFLAGS_RELEASE="${CXXFLAGS}" make } |