4 pkgdesc="oRTP is a LGPL licensed C library implementing the RTP protocol (rfc3550)"
6 url="http://www.linphone.org/"
9 depends=('openssl' 'libsrtp')
13 _gitroot="git://git.linphone.org/ortp.git"
18 msg "Connecting to GIT server...."
20 if [ -d $startdir/src/$_gitname ] ; then
21 cd $_gitname && git pull origin
22 msg "The local files are updated."
27 msg "GIT checkout done or server timeout"
28 msg "Starting make..."
30 rm -rf $srcdir/$_gitname-build
31 cp -r $srcdir/$_gitname $srcdir/$_gitname-build
32 cd $srcdir/$_gitname-build
34 ./autogen.sh || return 1
35 ./configure --prefix=/usr || return 1
37 make DESTDIR=$pkgdir install || return 1