# Maintainer: Tércio Martins pkgname=olive-git _pkgname=olive pkgver=continuous.r970.g9b7cbb3f _commit=9b7cbb3f pkgrel=1 arch=('i686' 'pentium4' 'x86_64') pkgdesc="Free non-linear video editor" url="https://www.olivevideoeditor.org/" license=('GPL3') depends=('ffmpeg' 'openimageio' 'qt5-multimedia') makedepends=('cmake' 'git' 'qt5-tools') # Temporarily, the "olive-git" package is incompatible # with the dependency "olive-community-effects-git". # More information on the link: # https://github.com/cgvirus/Olive-Editor-Community-Effects/blob/65b96e093c128f2bb9336e6b7ed93f801e73435d/README.md # optdepends=('olive-community-effects-git') provides=('olive') conflicts=('olive') source=("git+https://github.com/olive-editor/olive.git") sha512sums=('SKIP') pkgver() { cd "$_pkgname" git describe --long --tags | sed 's/\([^-]*-g\)/r\1/;s/-/./g' } prepare() { if [ -d build ] then rm -rf build fi mkdir build } build() { cd build cmake -DCMAKE_BUILD_TYPE=Release \ -DCMAKE_INSTALL_PREFIX=/usr \ ../$_pkgname make } package() { cd build make DESTDIR="$pkgdir/" install }