updated on Thu Jan 19 20:01:47 UTC 2012
[aur-mirror.git] / python-pyfprint-git / PKGBUILD
blob1d04a60f6ae5e5702446533028d3f677a05e68f8
1 # Contributor: Bruno Gomes <bgomes@opens1.com>, Lucas Castro <lucas@opens1.com>
3 pkgname=python-pyfprint-git
4 pkgver=20081111
5 pkgrel=1
6 pkgdesc="Python bindings for the libfprint fingerprinting library"
7 url="http://repo.or.cz/w/pyfprint.git"
8 arch=('i686' 'x86_64')
9 license=('GPL-2')
10 depends=('python' 'libfprint' 'swig' )
11 makedepends=('git')
12 conflicts=()
13 replaces=()
14 backup=()
15 install=()
16 source=()
17 md5sums=()
19 _gitroot="git://repo.or.cz/pyfprint.git"
20 _gitname="pyfprint"
22 build() {
23   cd ${srcdir}
24   msg "Connecting to git://repo.or.cz/pyfprint.git GIT server...."
26   if [ -d ${srcdir}/$_gitname ] ; then
27   cd $_gitname && git pull origin
28   msg "The local files are updated."
29   else
30   git clone $_gitroot
31   fi
33   msg "GIT checkout done or server timeout"
34   msg "Starting make..."
36   cd ${srcdir}/$_gitname
37   swig -python pyfprint/pyfprint_swig.i
38   python setup.py install --root=${pkgdir}
40