From 8fbc0076a4827ddc6af92e0b9daa4c4c31450808 Mon Sep 17 00:00:00 2001 From: root Date: Fri, 19 Jul 2013 01:10:32 -0700 Subject: Fri Jul 19 01:09:18 PDT 2013 --- community/kdenlive/PKGBUILD | 42 +++++++++++++++++++++++++++++++++++++ community/kdenlive/kdenlive.install | 13 ++++++++++++ 2 files changed, 55 insertions(+) create mode 100644 community/kdenlive/PKGBUILD create mode 100644 community/kdenlive/kdenlive.install (limited to 'community/kdenlive') diff --git a/community/kdenlive/PKGBUILD b/community/kdenlive/PKGBUILD new file mode 100644 index 000000000..87705015f --- /dev/null +++ b/community/kdenlive/PKGBUILD @@ -0,0 +1,42 @@ +# $Id: PKGBUILD 92336 2013-06-04 05:10:18Z svenstaro $ +# Maintainer: Sergej Pupykin +# Contributor: Zuf +# Contributor: Darwin Bautista + +pkgname=kdenlive +pkgver=0.9.6 +pkgrel=2 +pkgdesc="A non-linear video editor for Linux" +arch=('i686' 'x86_64') +# http://download.kde.org/stable/kdenlive/ +url="http://www.kdenlive.org/" +license=('GPL') +depends=('kdebase-runtime' 'mlt' 'qjson' 'libqzeitgeist') +makedepends=('automoc4' 'cmake' 'gettext' 'mesa' 'glu') +optdepends=('recordmydesktop: screen capture' + 'dvdauthor: dvd creation' + 'dvgrab: firewire capture' + 'xine-ui: dvd preview' + 'cdrkit: dvd iso image creation') +install=kdenlive.install +options=('docs') +source=(http://download.kde.org/stable/kdenlive/$pkgver/src/kdenlive-$pkgver.tar.bz2) +md5sums=('3bd3a511b860490acc367e7c9d7ffa43') + +build() { + export LDFLAGS="$LDFLAGS -lX11" + cd "${srcdir}" + mkdir -p build + cd build + cmake ../kdenlive-${pkgver} \ + -DCMAKE_BUILD_TYPE=Release \ + -DCMAKE_INSTALL_PREFIX=/usr \ + -DLIB_INSTALL_DIR=/usr/lib \ + -DLINK_LIBRARIES=-lX11 + make +} + +package() { + cd "${srcdir}"/build + make DESTDIR="${pkgdir}" install +} diff --git a/community/kdenlive/kdenlive.install b/community/kdenlive/kdenlive.install new file mode 100644 index 000000000..53a1827fd --- /dev/null +++ b/community/kdenlive/kdenlive.install @@ -0,0 +1,13 @@ +post_install() { + update-mime-database usr/share/mime &> /dev/null + update-desktop-database -q + xdg-icon-resource forceupdate --theme hicolor &> /dev/null +} + +post_upgrade() { + post_install +} + +post_remove() { + post_install +} -- cgit v1.2.3-54-g00ecf