updated on Thu Jan 12 04:00:44 UTC 2012
[aur-mirror.git] / netembryo-git / PKGBUILD
blob8beda4c19e84a0d600d45259d03b5de9019516eb
1 # Contributor: nepherte <nepherte[at]gmail[dot]com>
2 pkgname=netembryo-git
3 pkgver=20090501
4 pkgrel=1
5 pkgdesc="Netembryo is a network abstraction library plus some misc utility functions used as foundation for feng, libnemesi and felix."
6 arch=('i686' 'x86_64')
7 url="http://www.lscube.org/projects/netembryo"
8 license=('GPL')
9 depends=()
10 makedepends=('git' 'libtool' 'autoconf' 'automake')
11 provides=('netembryo=$pkgver')
12 conflicts=('netembryo')
13 source=()
14 md5sums=()
16 _gitroot="git://git.lscube.org/netembryo.git"
17 _gitname="netembryo"
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