updated on Mon Jan 23 16:10:15 UTC 2012
[aur-mirror.git] / zeromq3-git / PKGBUILD
blob02650420e95dee7c3bc83c52c3604e84c46659f6
1 # This is an example PKGBUILD file. Use this as a start to creating your own,
2 # and remove these comments. For more information, see 'man PKGBUILD'.
3 # NOTE: Please fill out the license field for your package! If it is unknown,
4 # then please put 'unknown'.
6 # See http://wiki.archlinux.org/index.php/VCS_PKGBUILD_Guidelines
7 # for more information on packaging from GIT sources.
9 # Maintainer: Filippov Aleksey <sarum9in@gmail.com>
10 pkgname=zeromq3-git
11 pkgver=20111008
12 pkgrel=1
13 pkgdesc="Fast messaging system built on sockets. AKA 0MQ, ZMQ."
14 arch=('i686' 'x86_64')
15 url="http://www.zeromq.org/"
16 license=('LGPL')
17 groups=()
18 depends=('util-linux')
19 makedepends=('git' 'asciidoc' 'xmlto')
20 provides=('zeromq')
21 conflicts=()
22 replaces=()
23 backup=()
24 options=(!libtool)
25 install=
26 source=()
27 noextract=()
28 md5sums=()
30 _gitroot="git://github.com/zeromq/zeromq3-0.git"
31 _gitname="zeromq"
33 build() {
34   cd "$srcdir"
35   msg "Connecting to GIT server...."
37   if [[ -d "$_gitname" ]]; then
38     cd "$_gitname" && git pull origin
39     msg "The local files are updated."
40   else
41     git clone "$_gitroot" "$_gitname"
42   fi
44   msg "GIT checkout done or server timeout"
45   msg "Starting build..."
47   rm -rf "$srcdir/$_gitname-build"
48   git clone "$srcdir/$_gitname" "$srcdir/$_gitname-build"
49   cd "$srcdir/$_gitname-build"
51   #
52   # BUILD HERE
53   #
54   ./autogen.sh
55   ./configure --prefix=/usr
56   make
59 check() {
60   cd "$srcdir/$_gitname-build"
61   make -k check
64 package() {
65   cd "$srcdir/$_gitname-build"
66   make DESTDIR="$pkgdir/" install
69 # vim:set ts=2 sw=2 et: