desktop/kdenlive/PKGBUILD

44 lines
1.3 KiB
Bash
Raw Normal View History

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')
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"
"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')
categories=('multimedia')
options=('debug')
2012-05-15 19:47:19 +08:00
screenshot=('http://kdenlive.org/sites/default/files/kdenlive-090a_0.png')
source=("$_mirror/${pkgname}-$_kdever.tar.xz"{,.sig})
sha256sums=(`grep ${pkgname}-$_kdever.tar.xz ../kdeapps.sums | cut -d " " -f1`
'SKIP')
2017-08-11 00:14:23 +08:00
validpgpkeys=(${Avalidpgpkeys[@]})
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}
make
}
package() {
2016-04-16 20:51:04 +08:00
cd build
make DESTDIR=${pkgdir} install
}