diff --git a/PKGBUILD b/PKGBUILD index c8398e4..0b8f096 100644 --- a/PKGBUILD +++ b/PKGBUILD @@ -2,14 +2,14 @@ pkgname=olive-git _pkgname=${pkgname%-*} -pkgver=continuous.r1315.g251b4d537 +pkgver=continuous.r1319.gfc86d46f0 pkgrel=1 arch=('pentium4' 'x86_64') pkgdesc="Free non-linear video editor" url="https://www.olivevideoeditor.org/" license=('GPL3') -depends=('ffmpeg' 'openimageio' 'opentimelineio-git' 'portaudio' 'qt5-base') -makedepends=('cmake' 'git' 'ninja' 'qt5-svg' 'qt5-tools') +depends=('ffmpeg' 'openimageio' 'opentimelineio' 'portaudio' 'qt5-base') +makedepends=('cmake' 'git' 'ninja' 'qt5-svg' 'qt5-tools' 'optional-lite' 'pybind11') # Temporarily, the "olive-git" package is incompatible # with the dependency "olive-community-effects-git". @@ -32,7 +32,7 @@ prepare() { # The build completes normally when this warning is disabled. cd $_pkgname - sed -i "/Wshadow/a \ -Wno-stringop-overflow" CMakeLists.txt + sed -i "s/Wshadow/Wno-stringop-overflow/" CMakeLists.txt } build() { @@ -40,7 +40,8 @@ build() { cmake -GNinja \ -Bbuild \ -DCMAKE_BUILD_TYPE=RelWithDebInfo \ - -DCMAKE_INSTALL_PREFIX=/usr + -DCMAKE_INSTALL_PREFIX=/usr \ + -DOTIO_BASE_DIR=/usr/lib/python3.9/site-packages/opentimelineio/cxx-libs/ ninja -C build/ }