2015-11-07 18:07:10 +08:00
|
|
|
# Contributions from Arch: https://www.archlinux.org/packages/kde-unstable/x86_64/kdenlive/
|
|
|
|
# Include global configuration
|
2010-07-20 06:22:16 +08:00
|
|
|
|
|
|
|
pkgname=kdenlive
|
2018-11-12 15:42:59 +08:00
|
|
|
pkgver=18.08.3
|
2016-04-17 20:50:48 +08:00
|
|
|
pkgrel=1
|
2010-07-20 06:22:16 +08:00
|
|
|
pkgdesc="A non-linear video editor for Linux"
|
2013-01-29 11:17:34 +08:00
|
|
|
arch=('x86_64')
|
2010-07-20 06:22:16 +08:00
|
|
|
url="http://www.kdenlive.org/"
|
|
|
|
license=('GPL')
|
2017-05-02 05:29:40 +08:00
|
|
|
depends=('knewstuff' 'knotifyconfig' 'kplotting' 'mlt' 'glu' 'hicolor-icon-theme' 'kfilemetadata')
|
2010-07-20 06:42:54 +08:00
|
|
|
optdepends=("dvdauthor: for creating dvds"
|
2015-11-07 18:07:10 +08:00
|
|
|
"recordmydesktop: for desktop-recordings"
|
|
|
|
"dvgrab: for firewire capture"
|
|
|
|
"xine-ui: for DVD preview"
|
|
|
|
"ffmpeg: for FFmpeg plugin"
|
|
|
|
"cdrkit: for creation of DVD ISO images"
|
2015-11-16 08:14:48 +08:00
|
|
|
"libdv: for webcam capture (if FFmpeg is not installed)"
|
|
|
|
"vid.stab: for video stabilize plugin ")
|
2015-11-07 18:07:10 +08:00
|
|
|
makedepends=('extra-cmake-modules' 'kdoctools' 'v4l-utils' 'python')
|
2012-03-16 22:51:37 +08:00
|
|
|
categories=('multimedia')
|
2016-04-02 05:07:22 +08:00
|
|
|
options=('debug')
|
2012-05-15 19:47:19 +08:00
|
|
|
screenshot=('http://kdenlive.org/sites/default/files/kdenlive-090a_0.png')
|
2018-08-14 04:34:43 +08:00
|
|
|
source=("https://download.kde.org/stable/applications/$pkgver/src/$pkgname-$pkgver.tar.xz"{,.sig})
|
2018-11-12 15:42:59 +08:00
|
|
|
sha256sums=('587941cccff85ff87063dbb70fe1a67f140fce207a46e35ce136cbf104e35d15'
|
2018-06-18 02:07:39 +08:00
|
|
|
'SKIP')
|
2018-06-18 00:14:15 +08:00
|
|
|
validpgpkeys=(CA262C6C83DE4D2FB28A332A3A6A4DB839EAA6D7 # Albert Astals Cid <aacid@kde.org>
|
|
|
|
F23275E4BF10AFC1DF6914A6DBD2CE893E2D1C87) # Christoph Feck <cfeck@kde.org>
|
2010-07-20 06:22:16 +08:00
|
|
|
|
2015-11-07 18:07:10 +08:00
|
|
|
prepare(){
|
|
|
|
mkdir -p build
|
|
|
|
}
|
2012-05-15 19:47:19 +08:00
|
|
|
|
2015-11-07 18:07:10 +08:00
|
|
|
build() {
|
|
|
|
cd build
|
2018-06-18 00:14:15 +08:00
|
|
|
cmake ../${pkgname}-${pkgver} \
|
|
|
|
-DCMAKE_BUILD_TYPE=RelWithDebInfo \
|
|
|
|
-DCMAKE_INSTALL_PREFIX=/usr \
|
|
|
|
-DKDE_INSTALL_LIBDIR=lib \
|
|
|
|
-DKDE_INSTALL_SYSCONFDIR=/etc \
|
|
|
|
-DKDE_INSTALL_LIBEXECDIR=lib \
|
|
|
|
-DUDEV_RULES_INSTALL_DIR=/usr/lib/udev/rules.d \
|
|
|
|
-DBUILD_TESTING=OFF \
|
|
|
|
-DKDE_INSTALL_USE_QT_SYS_PATHS=ON "$@"
|
2011-11-01 04:21:51 +08:00
|
|
|
make
|
|
|
|
}
|
|
|
|
|
|
|
|
package() {
|
2016-04-16 20:51:04 +08:00
|
|
|
cd build
|
|
|
|
make DESTDIR=${pkgdir} install
|
2016-04-02 05:07:22 +08:00
|
|
|
}
|