updated on Thu Jan 26 16:09:46 UTC 2012
[aur-mirror.git] / libnemesi-git / PKGBUILD
blob06e076bcc0901f4e0629f9a54e50d582a51063e2
1 # Contributor: Bart Verhoeven <nepherte at archlinux dot us> 
2 pkgname=libnemesi-git
3 pkgver=20090501
4 pkgrel=3
5 pkgdesc="Implementation of RTSP - Real-Time Streaming Protocol (RFC2326) and RTP/RTCP - Real-Time Transport Protocol/RTP Control Protocol (RFC3550) supporting the RTP Profile for Audio and Video Conferences with Minimal Control (RFC3551)."
6 arch=('i686' 'x86_64')
7 url="http://www.lscube.org/projects/libnemesi"
8 license=('GPL')
9 depends=('netembryo-git')
10 makedepends=('git' 'libtool' 'autoconf' 'automake')
11 provides=('libnemesi=$pkgver')
12 conflicts=('libnemesi')
13 source=()
14 md5sums=()
16 _gitroot="git://git.lscube.org/libnemesi.git"
17 _gitname="libnemesi"
19 build() {
20   cd $srcdir
21   msg "Connecting to the GIT server...."
22   
23   if [[ -d $srcdir/$_gitname ]] ; then
24     cd $_gitname
25     git pull origin
26     msg "The local files are updated."
27   else
28     git clone $_gitroot
29   fi
30   
31   msg "GIT checkout done"
32   msg "Starting make..."
33   
34   rm -rf $srcdir/$_gitname-build
35   git clone $srcdir/$_gitname $srcdir/$_gitname-build
36   
37   cd $srcdir/$_gitname-build
39   autoreconf -i
41   ./configure || return 1
42   make || return 1
43   make DESTDIR="$pkgdir" install || return 1