mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-12-28 23:21:53 +00:00
23 lines
866 B
Bash
23 lines
866 B
Bash
# $Id: PKGBUILD 298 2009-07-23 06:46:06Z abhidg $
|
|
# Maintainer: Abhishek Dasgupta <abhidg@gmail.com>
|
|
# Contributor: Gabor Nyekhelyi (n0gabor) <n0gabor@vipmail.hu>
|
|
|
|
pkgname=pitivi
|
|
pkgver=0.13.1
|
|
pkgrel=2
|
|
pkgdesc="Editor for audio/video projects using the GStreamer framework"
|
|
arch=('i686' 'x86_64')
|
|
license=('LGPL')
|
|
depends=('gstreamer0.10>=0.10.14' 'pygoocanvas' 'gstreamer0.10-good' 'pygtk>=2.8.0' 'gstreamer0.10-python>=0.10.6' 'gnonlin>=0.10.10.3' 'setuptools' 'zope-interface' 'dbus-python' 'gnome-icon-theme')
|
|
makedepends=('pkgconfig')
|
|
install=$pkgname.install
|
|
source=(http://ftp.gnome.org/pub/GNOME/sources/$pkgname/0.13/$pkgname-$pkgver.tar.gz)
|
|
url="http://www.pitivi.org/"
|
|
|
|
build() {
|
|
cd "$srcdir/$pkgname-$pkgver"
|
|
./configure --prefix=/usr
|
|
make || return 1
|
|
make DESTDIR="$pkgdir" install || return 1
|
|
}
|
|
md5sums=('79322442b632adfe22d37e86095c9a69')
|