summaryrefslogtreecommitdiff
path: root/community/gnonlin
diff options
context:
space:
mode:
authorroot <root@rshg054.dnsready.net>2013-07-19 01:10:32 -0700
committerroot <root@rshg054.dnsready.net>2013-07-19 01:10:32 -0700
commit8fbc0076a4827ddc6af92e0b9daa4c4c31450808 (patch)
tree03fd0e2921ebd53228d9a93e32ed3976b636cbea /community/gnonlin
parente445a313723389ba9ee1fded025c567dae5b21ea (diff)
Fri Jul 19 01:09:18 PDT 2013
Diffstat (limited to 'community/gnonlin')
-rw-r--r--community/gnonlin/PKGBUILD33
1 files changed, 33 insertions, 0 deletions
diff --git a/community/gnonlin/PKGBUILD b/community/gnonlin/PKGBUILD
new file mode 100644
index 000000000..8a7bde9c5
--- /dev/null
+++ b/community/gnonlin/PKGBUILD
@@ -0,0 +1,33 @@
+# $Id: PKGBUILD 76165 2012-09-12 12:34:14Z arodseth $
+# Maintainer: Alexander Rødseth <rodseth@gmail.com>
+# Contributor: Ionut Biru <ibiru@archlinux.org>
+# Contributor: Abhishek Dasgupta <abhidg@gmail.com>
+# Contributor: William Rea <sillywilly@gmail.com>
+
+pkgname=gnonlin
+pkgver=0.10.17
+pkgrel=1
+pkgdesc='Library for creating non-linear video editors'
+arch=('x86_64' 'i686')
+url='http://gnonlin.sourceforge.net/'
+depends=('gstreamer0.10>=0.10.36')
+makedepends=('python' 'gstreamer0.10-base-plugins>=0.10.36' 'pkgconfig')
+options=('!libtool')
+license=('LGPL')
+source=("http://gstreamer.freedesktop.org/src/$pkgname/$pkgname-$pkgver.tar.bz2")
+sha256sums=('e4a2dd8af1c0c97f2f63e918a25c26e871c896e88b7ee85948509f68f29e8935')
+
+build() {
+ cd "$srcdir/$pkgname-$pkgver"
+
+ ./configure --prefix=/usr
+ make
+}
+
+package() {
+ cd "$srcdir/$pkgname-$pkgver"
+
+ make DESTDIR="$pkgdir" install
+}
+
+# vim:set ts=2 sw=2 et: