milis/talimatname/genel/l/live/talimat

37 lines
924 B
Plaintext
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

# 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
}