summaryrefslogtreecommitdiff
path: root/community/flumotion
diff options
context:
space:
mode:
authorroot <root@rshg054.dnsready.net>2013-07-17 00:58:52 -0700
committerroot <root@rshg054.dnsready.net>2013-07-17 00:58:52 -0700
commitdee9f17b595ea903a982d31d1124b302bb17e2ff (patch)
tree295fdab78e28e1952fbc13ce824d57c88ede4e3b /community/flumotion
parent380530d02a5449fdef97b63b394a6743c3de0092 (diff)
Wed Jul 17 00:58:51 PDT 2013
Diffstat (limited to 'community/flumotion')
-rw-r--r--community/flumotion/PKGBUILD44
1 files changed, 0 insertions, 44 deletions
diff --git a/community/flumotion/PKGBUILD b/community/flumotion/PKGBUILD
deleted file mode 100644
index 44a9523b6..000000000
--- a/community/flumotion/PKGBUILD
+++ /dev/null
@@ -1,44 +0,0 @@
-# $Id: PKGBUILD 91878 2013-05-28 18:07:53Z spupykin $
-# Maintainer: Sergej Pupykin <pupykin.s+arch@gmail.com>
-# Contributor: Geoffroy Carrier <geoffroy.carrier@koon.fr>
-# Contributor: William Rea <sillywilly@gmail.com>
-
-pkgname=flumotion
-pkgver=0.10.1
-pkgrel=2
-arch=('i686' 'x86_64')
-pkgdesc="A streaming media server"
-url="http://www.flumotion.net"
-options=('!libtool')
-license=('GPL')
-backup=(etc/flumotion/workers/default.xml
- etc/flumotion/managers/default/planet.xml)
-depends=('gtk2' 'pygtk' 'gstreamer0.10-python' 'kiwi' 'gstreamer0.10-good-plugins'
- 'gstreamer0.10-base-plugins' 'python2-pyopenssl' 'twisted' 'gnome-vfs')
-makedepends=('perlxml')
-source=(http://www.flumotion.net/src/$pkgname/$pkgname-$pkgver.tar.bz2)
-md5sums=('fbbb2f4ccf0624742c5ca8238f3ec5e0')
-
-build() {
- cd "$srcdir/$pkgname-$pkgver"
-
- # python2 fix
- sed -i 's_candidate in python_candidate in python2_' configure
- for file in $(find . -name '*.py' -print); do
- sed -i 's_^#!.*/usr/bin/python_#!/usr/bin/python2_' $file
- sed -i 's_^#!.*/usr/bin/env.*python_#!/usr/bin/env python2_' $file
- done
-
- ./configure --prefix=/usr --sysconfdir=/etc --localstatedir=/var --sbindir=/usr/bin
-
- make
-}
-
-package() {
- cd "$srcdir/$pkgname-$pkgver"
- install -d "$pkgdir/etc/$pkgname"
- make DESTDIR="$pkgdir" install
- cp -R conf/workers "$pkgdir/etc/$pkgname"
- cp -R conf/managers "$pkgdir/etc/$pkgname"
- cp conf/default.pem "$pkgdir/etc/$pkgname"
-}