blob: deb9fc66d53bcdd835a53722af29d440bc1641ce (
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
|
# Maintainer: Natanael Copa <ncopa@alpinelinux.org>
pkgname=live-media
pkgver=2018.12.14
pkgrel=0
pkgdesc="A set of C++ libraries for multimedia streaming"
url="http://live555.com/liveMedia"
arch="all"
license="LGPL"
subpackages="$pkgname-dev $pkgname-utils"
options="!check"
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/" \
-i config.linux-with-shared-libraries
}
build() {
cd "$builddir"
./genMakefiles linux-with-shared-libraries
make C_COMPILER="${CC:-gcc}" CPLUSPLUS_COMPILER="${CXX:-g++}" \
|| return 1
}
package() {
local testprog f so
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 || true
for so in $f/lib*.so.*; do
soname=$(scanelf -B --format "#F%S" $so)
cp $so "$pkgdir"/usr/lib/ || return 1
so=${so##*/}
ln -s ${so} "$pkgdir"/usr/lib/${soname} || return 1
ln -s ${so} "$pkgdir"/usr/lib/${soname%.so.*}.so || return 1
done
done
mkdir -p "$pkgdir"/usr/bin
for testprog in `find testProgs -type f -perm 755`; do
install ${testprog} "$pkgdir"/usr/bin
done
}
utils() {
pkgdesc="multimedia RTSP streaming tools"
mkdir -p "$subpkgdir"/usr
mv "$pkgdir"/usr/bin "$subpkgdir"/usr/
}
sha512sums="8668f088e33c34a4a20a537e70c4f6678a93b275a77ce25697b95798f0b75d1d0f6a7f2d5284c0649330fa783d06946995e065241528169396460de548f5e44f live.2018.12.14.tar.gz"
|