summaryrefslogtreecommitdiffstats
path: root/live/Pkgfile
diff options
context:
space:
mode:
authortnut <tnut at nutyx dot com>2012-01-08 12:15:45 +0100
committertnut <tnut at nutyx dot com>2012-01-08 12:15:45 +0100
commit3f57a7f93b3e7550cbd73036f6a56654e17d1d5c (patch)
tree819b14ab0377fe2054fe59866669d904e9e0b4b5 /live/Pkgfile
parentc9972ec7f32bf9d37388e853fe9bf633e242d05a (diff)
downloadnutyx-extra-3f57a7f93b3e7550cbd73036f6a56654e17d1d5c.tar.gz
nutyx-extra-3f57a7f93b3e7550cbd73036f6a56654e17d1d5c.tar.bz2
nutyx-extra-3f57a7f93b3e7550cbd73036f6a56654e17d1d5c.tar.xz
nutyx-extra-3f57a7f93b3e7550cbd73036f6a56654e17d1d5c.zip
split de git pakxe et NuTyX-extra
Diffstat (limited to 'live/Pkgfile')
-rw-r--r--live/Pkgfile44
1 files changed, 44 insertions, 0 deletions
diff --git a/live/Pkgfile b/live/Pkgfile
new file mode 100644
index 000000000..95bbad5e8
--- /dev/null
+++ b/live/Pkgfile
@@ -0,0 +1,44 @@
+# Description: Librairies C++ pour flux multimedia (RTP/RTCP, RTSP, SIP)
+# URL: http://www.live555.com/liveMedia/
+# Maintainer: NuTyX core team
+# Packager: thierryn1 at hispeed dot ch
+# Depends on:
+# Run on:
+
+name=live
+version=2011.10.27
+release=1
+source=(http://www.live555.com/liveMedia/public/${name}.$version.tar.gz)
+
+build() {
+ mkdir -p $PKG/usr/lib
+
+ cd $name
+ sed \
+ -e 's/$(INCLUDES) -I. -O2 -DSOCKLEN_T/$(INCLUDES) -I. -O2 -I. -fPIC -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
+
+ gcc -shared -o libliveMedia.so.$version */*.a
+
+ for dir in BasicUsageEnvironment UsageEnvironment groupsock liveMedia; do
+ mkdir -p $PKG/usr/lib/live/$dir
+ cp -r $dir/*.a $dir/include $PKG/usr/lib/live/$dir
+ done
+
+ mkdir -p $PKG/usr/bin
+ for testprog in `find testProgs -type f -perm 755`; do
+ install $testprog $PKG/usr/bin
+ done
+
+ cp libliveMedia.so.$version $PKG/usr/lib/live/
+ ln -s libliveMedia.so.$version $PKG/usr/lib/live/libliveMedia.so
+ ln -s live/libliveMedia.so.$version $PKG/usr/lib/libliveMedia.so.$version
+ ln -s libliveMedia.so.$version $PKG/usr/lib/libliveMedia.so
+
+}
+