2015-11-07 18:07:10 +08:00
|
|
|
# Contributions from Arch: https://www.archlinux.org/packages/kde-unstable/x86_64/kdenlive/
|
|
|
|
# Include global configuration
|
|
|
|
source ../kdeapps.conf
|
2010-07-20 06:22:16 +08:00
|
|
|
|
|
|
|
pkgname=kdenlive
|
2015-11-07 18:07:10 +08:00
|
|
|
pkgver=${_kdever}
|
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')
|
2015-11-07 18:07:10 +08:00
|
|
|
depends=('knewstuff' 'knotifyconfig' 'kplotting' 'mlt' 'glu' 'hicolor-icon-theme')
|
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')
|
2015-12-05 07:26:22 +08:00
|
|
|
source=("$_mirror/${pkgname}-$_kdever.tar.xz")
|
|
|
|
sha256sums=(`grep ${pkgname}-$_kdever.tar.xz ../checksums.txt | cut -d " " -f1`)
|
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
|
|
|
|
cmake_kf5 ../${pkgname}-${pkgver}
|
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
|
|
|
}
|