updated on Sun Jan 15 08:01:04 UTC 2012
[aur-mirror.git] / neercs-git / PKGBUILD
blobaf9bde8d859ada1ed2f2eaf1ce48b2f458bb6092
1 # $Id$
2 # Contributor: Will Chappell <mr.chapendi@gmail.com>
3 pkgname=neercs-git
4 pkgver=20091106
5 pkgrel=1
6 pkgdesc="Like GNU screen, it allows you to detach a session from a terminal, but provides unique features."
7 arch=(i686 x86_64)
8 url="http://caca.zoy.org/wiki/neercs"
9 license=('custom')
10 conflicts=(neercs)
11 depends=(libcaca)
12 makedepends=(git)
13 source=()
14 md5sums=()
15 _gitroot="git://git.zoy.org/neercs.git"
16 _gitname="neercs"
18 build() {
19   cd "$srcdir"
20   msg "Connecting to the $pkgname git repository."
21   
22   if [ -d "$srcdir/$_gitname" ] ; then
23     cd $_gitname && git pull origin
24     msg "The local files are updated."
25   else
26     git clone "$_gitroot"
27   fi
29   msg "GIT checkout done or server timeout"
30   msg "Starting make..."
32   cd "$srcdir"
34   rm -rf "$_gitname"-build
35   git clone "$_gitname" "$_gitname"-build
36   cd "$_gitname"-build
38   aclocal || return 1
39   libtoolize || return 1
40   autoheader || return 1
41   automake --add-missing || return 1
42   autoconf || return 1
43   ./configure --prefix=/usr || return 1
44   make -j1 || return 1
45   make check
46   make DESTDIR="$startdir/pkg" install