37 lines
924 B
Plaintext
37 lines
924 B
Plaintext
|
# Tanım: Multimedya akışı için bir dizi C ++ kütüphanesi
|
|||
|
# URL: http://www.live555.com/liveMedia/
|
|||
|
# Paketçi: milisarge
|
|||
|
# Gerekler:
|
|||
|
|
|||
|
isim=live
|
|||
|
surum=2014.07.04
|
|||
|
devir=1
|
|||
|
|
|||
|
kaynak=(http://downloads.nutyx.org/files/$isim.$surum.tar.gz)
|
|||
|
|
|||
|
derle() {
|
|||
|
cd $SRC/live
|
|||
|
|
|||
|
sed \
|
|||
|
-e 's/$(INCLUDES) -I. -O2 -DSOCKLEN_T/$(INCLUDES) -I. -O2 -I. -fPIC -DRTSPCLIENT_SYNCHRONOUS_INTERFACE=1 -DSOCKLEN_T/g' \
|
|||
|
-e 's/\(LIBRARY_LINK =\).*/\1 $(LD) -o/g' \
|
|||
|
-e 's/\(LIBRARY_LINK_OPTS =\).*/\1 $(LINK_OPTS) -r -Bstatic/g' \
|
|||
|
-i config.linux
|
|||
|
./genMakefiles linux
|
|||
|
make
|
|||
|
|
|||
|
|
|||
|
for dir in BasicUsageEnvironment groupsock liveMedia UsageEnvironment; do
|
|||
|
install -dm755 $PKG/usr/{bin,lib,include/${dir}}
|
|||
|
install -m644 ${dir}/*.a $PKG/usr/lib
|
|||
|
install -m644 ${dir}/include/*.h* $PKG/usr/include/${dir}
|
|||
|
done
|
|||
|
|
|||
|
for testprog in `find testProgs -type f -perm 755`; do
|
|||
|
install ${testprog} $PKG/usr/bin
|
|||
|
done
|
|||
|
|
|||
|
}
|
|||
|
|
|||
|
|