blob: 1814235bb08de088996457aff48cf833958c07a7 (
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
|
# Maintainer: Natanael Copa <ncopa@alpinelinux.org>
pkgname=live-media
pkgver=2012.07.26
pkgrel=0
pkgdesc="A set of C++ libraries for multimedia streaming"
url="http://live555.com/liveMedia"
arch="all"
license="LGPL"
depends=
makedepends=
subpackages="$pkgname-dev"
source="http://live555.com/liveMedia/public/live.$pkgver.tar.gz"
_builddir="$srcdir"/live
prepare() {
cd "$_builddir"
sed -e "/^COMPILE_OPTS/s/$/ $CFLAGS -fPIC -DPIC -DXLOCALE_NOT_USED=1 -DRTSPCLIENT_SYNCHRONOUS_INTERFACE/" \
-e 's/\(LIBRARY_LINK =\).*/\1 $(LD) -o/g' \
-e 's/\(LIBRARY_LINK_OPTS =\).*/\1 $(LINK_OPTS) -r -Bstatic/g' \
-i config.linux
}
build() {
cd "$_builddir"
./genMakefiles linux
make C_COMPILER="${CC:-gcc}" CPLUSPLUS_COMPILER="${CXX:-g++}" \
|| return 1
}
package() {
local dir
cd "$_builddir"
mkdir -p "$pkgdir"/usr/lib
for f in BasicUsageEnvironment UsageEnvironment liveMedia groupsock; do
mkdir -p "$pkgdir"/usr/include/$f
cp $f/include/*.h* "$pkgdir"/usr/include/$f
cp $f/lib${f}.a "$pkgdir"/usr/lib
done
mkdir -p "$pkgdir"/usr/bin
for testprog in `find testProgs -type f -perm 755`; do
install ${testprog} "$pkgdir"/usr/bin
done
}
md5sums="18374e9f6681f62ab7c987ca0029d494 live.2012.07.26.tar.gz"
|