blob: 5dc1da3856c1bd40c188d0d8150bf9a3303f1f95 (
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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
|
# Contributor: Natanael Copa <ncopa@alpinelinux.org>
# Maintainer: Natanael Copa <ncopa@alpinelinux.org>
pkgname=farstream
pkgver=0.2.3
pkgrel=0
pkgdesc="Libraries for videoconferencing"
url="http://www.freedesktop.org/wiki/Software/Farstream"
arch="all"
license="LGPLv2+"
depends=""
depends_dev="libnice-dev gstreamer1-dev gst-plugins-base1-dev"
makedepends="$depends_dev gobject-introspection-dev py-gobject-dev python-dev"
install=""
subpackages="$pkgname-dev $pkgname-doc"
source="http://freedesktop.org/software/farstream/releases/farstream/farstream-$pkgver.tar.gz"
_builddir="$srcdir"/farstream-$pkgver
prepare() {
local i
cd "$_builddir"
update_config_sub || return 1
for i in $source; do
case $i in
*.patch) msg $i; patch -p1 -i "$srcdir"/$i || return 1;;
esac
done
}
build() {
cd "$_builddir"
./configure \
--build=$CBUILD \
--host=$CHOST \
--prefix=/usr \
--enable-python \
--disable-static \
|| return 1
make || return 1
}
package() {
cd "$_builddir"
make DESTDIR="$pkgdir" install || return 1
rm -f "$pkgdir"/usr/lib/*.la \
"$pkgdir"/usr/lib/*/*.la \
"$pkgdir"/usr/lib/python*/site-packages/farstream.la
}
py() {
pkgdesc="Python binding for farstream"
mkdir -p "$subpkgdir"/usr/lib/
mv "$pkgdir"/usr/lib/python* "$subpkgdir"/usr/lib/
}
md5sums="a8971167068b69a6933d3eaaeb9ab448 farstream-0.2.3.tar.gz"
sha256sums="bff535949252cdfc0374cb91f08b08476e7af38183295269b579500cc6c60496 farstream-0.2.3.tar.gz"
sha512sums="2f584a034611c22bfaa622e043884329a6d32821fd194b55d5c92669285ee43ff1a60cde3a9f825c3a895c50fd733ff6cf85beeb7efffff053eca287e7bc9528 farstream-0.2.3.tar.gz"
|