updated on Mon Jan 9 08:00:21 UTC 2012
[aur-mirror.git] / pyzmq-git / PKGBUILD
blob2c20d1e07f45bbb4b711e756f1b234b0ce0588e7
1 # Contributor: boypt <pentie at gmail.com>
2 # Maintainer: Daniel YC Lin <dlin.tw at gmail.com>
3 pkgname=pyzmq-git
4 pkgver=20110604
5 epoch=
6 pkgrel=1
7 pkgdesc="Cython based Python bindings for 0MQ(zeromq)."
8 arch=(i686 x86_64)
9 url="http://www.zeromq.org/bindings:python"
10 license=('LGPL')
11 depends=(zeromq python2)
12 makedepends=('git' 'cython')
14 _gitroot="http://github.com/zeromq/pyzmq.git"
15 _gitname="pyzmq"
17 build() {
18   cd "$srcdir"
19   msg "Connecting to GIT server...."
21   if [ -d $_gitname ] ; then
22     cd $_gitname && git pull origin
23     msg "The local files are updated."
24   else
25     git clone $_gitroot $_gitname
26   fi
28   msg "GIT checkout done or server timeout"
29   msg "Starting make..."
31   rm -rf "$srcdir/$_gitname-build"
32   git clone "$srcdir/$_gitname" "$srcdir/$_gitname-build"
33   cd "$srcdir/$_gitname-build"
35   #
36   # BUILD HERE
37   #
38   python2 setup.py build||return 1
41 package() {
42   cd "$srcdir/$_gitname-build"
43   python2 setup.py install --root="$pkgdir"
44
46 # vim:set ts=2 sw=2 et: