blob: 531c49b97b37ce7eb9e26ecc3f7433632e613e27 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
|
# $Id: PKGBUILD 47404 2011-05-22 20:37:23Z tdziedzic $
# 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.8.1
pkgrel=1
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=('8970bb126a1720ae3f0b2d02924e5700')
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
install -d "$pkgdir/etc/$pkgname"
make
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"
}
|