diff options
Diffstat (limited to 'python-gitdb/PKGBUILD')
-rw-r--r-- | python-gitdb/PKGBUILD | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/python-gitdb/PKGBUILD b/python-gitdb/PKGBUILD new file mode 100644 index 0000000..ff537fa --- /dev/null +++ b/python-gitdb/PKGBUILD @@ -0,0 +1,18 @@ +# Contributor: Jon Bergli Heier <snakebite@jvnv.net> +pkgname=python-gitdb +pkgver=0.5.1 +pkgrel=1 +pkgdesc="IO of git-style object databases" +arch=(i686 x86_64) +url="http://pypi.python.org/pypi/gitdb" +license=('BSD') +depends=('python-async') +source=("http://pypi.python.org/packages/source/g/gitdb/gitdb-${pkgver}.tar.gz") + +md5sums=('235ae42aa3caf8d1427fd167ce267bdd') + +build() { + cd "$srcdir/gitdb-$pkgver" + python2 setup.py install --root="$pkgdir/" || return 1 +} +# vim:set ts=2 sw=2 et: |