mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-11-28 22:57:37 +00:00
23 lines
687 B
Bash
23 lines
687 B
Bash
# Contributor: Zuf <kontakt.zuf@gmail.com>
|
|
# Contributor: Zuf <kontakt.zuf@gmail.com>
|
|
# Old maintainer and contributor: Darwin Bautista <djclue917@gmail.com>
|
|
|
|
pkgname=kdenlive
|
|
pkgver=0.7.5
|
|
pkgrel=1
|
|
pkgdesc="A non-linear video editor for Linux"
|
|
arch=('i686' 'x86_64')
|
|
url="http://www.kdenlive.org/"
|
|
license=('GPL')
|
|
depends=('kdelibs>=4.2.0' 'mlt>=0.4.4' 'dvgrab')
|
|
makedepends=('automoc4' 'cmake' 'gettext')
|
|
source=(http://downloads.sourceforge.net/kdenlive/kdenlive-$pkgver.tar.gz)
|
|
md5sums=('2b56a9a5b2b4e18d026d13fa4e159cba')
|
|
|
|
build() {
|
|
cd "$srcdir/$pkgname-$pkgver"
|
|
|
|
cmake -DCMAKE_INSTALL_PREFIX=/usr -DLIB_INSTALL_DIR=/usr/lib
|
|
make || return 1
|
|
make DESTDIR="$pkgdir" install
|
|
}
|