Date: Monday, May 3, 2021 @ 15:45:27
Author: arojas
Revision: 414269
archrelease: copy trunk to staging-x86_64
Added:
kdenlive/repos/staging-x86_64/
kdenlive/repos/staging-x86_64/PKGBUILD
(from rev 414268, kdenlive/trunk/PKGBUILD)
----------+
PKGBUILD | 43 +++++++++++++++++++++++++++++++++++++++++++
1 file changed, 43 insertions(+)
Copied: kdenlive/repos/staging-x86_64/PKGBUILD (from rev 414268,
kdenlive/trunk/PKGBUILD)
===================================================================
--- staging-x86_64/PKGBUILD (rev 0)
+++ staging-x86_64/PKGBUILD 2021-05-03 15:45:27 UTC (rev 414269)
@@ -0,0 +1,43 @@
+# Maintainer: Antonio Rojas <[email protected]>
+# Contributor: Sergej Pupykin <[email protected]>
+# Contributor: Zuf <[email protected]>
+# Contributor: Darwin Bautista <[email protected]>
+# Contributor: Gustavo Alvarez <[email protected]>
+
+pkgname=kdenlive
+pkgver=21.04.0
+pkgrel=2
+pkgdesc='A non-linear video editor for Linux using the MLT video framework'
+arch=(x86_64)
+url='https://apps.kde.org/kdenlive/'
+license=(GPL)
+groups=(kde-applications kde-multimedia)
+depends=(qt5-networkauth knewstuff knotifyconfig kfilemetadata purpose mlt6
rttr breeze-icons frei0r-plugins)
+makedepends=(extra-cmake-modules kdoctools v4l-utils)
+optdepends=('ffmpeg: for FFmpeg plugin'
+ 'cdrtools: for creation of DVD ISO images'
+ 'dvdauthor: for creation of DVD'
+ 'dvgrab: for firewire capture'
+ 'recordmydesktop: for screen capture'
+ 'xine-ui: for DVD preview'
+ 'vlc: for DVD preview'
+ 'opencv: for motion tracking'
+ 'plasma-desktop: theme configuration'
+ 'opentimelineio: timeline export/import')
+source=(https://download.kde.org/stable/release-service/$pkgver/src/$pkgname-$pkgver.tar.xz{,.sig})
+sha256sums=('b0be8f0adef51d3305ec6bebde089b8e4d2fb4519c83456cd91647e7763d4bdf'
+ 'SKIP')
+validpgpkeys=(CA262C6C83DE4D2FB28A332A3A6A4DB839EAA6D7 # Albert Astals Cid
<[email protected]>
+ F23275E4BF10AFC1DF6914A6DBD2CE893E2D1C87 # Christoph Feck
<[email protected]>
+ D81C0CB38EB725EF6691C385BB463350D6EF31EF) # Heiko Becker
<[email protected]>
+
+build() {
+ cmake -B build -S $pkgname-$pkgver \
+ -DBUILD_TESTING=OFF \
+ -DCRASH_AUTO_TEST=ON
+ cmake --build build
+}
+
+package() {
+ DESTDIR="$pkgdir" cmake --install build
+}