diff options
author | James Meyer <jams@linhes.org> | 2010-12-15 17:12:21 (GMT) |
---|---|---|
committer | James Meyer <jams@linhes.org> | 2010-12-15 17:12:21 (GMT) |
commit | 4da2eb96f5540b6658d7113eba443a423f924f1f (patch) | |
tree | 9a3cb176acc18aae917dee22a71c0e2a735a173c /abs/core/python_modules/python-gitdb/PKGBUILD | |
parent | 7fee2d9e0891259067481f6fc54ed10193b349c8 (diff) | |
parent | ab340c7f02acde98b5f89a945d930f0328704386 (diff) | |
download | linhes_pkgbuild-4da2eb96f5540b6658d7113eba443a423f924f1f.zip linhes_pkgbuild-4da2eb96f5540b6658d7113eba443a423f924f1f.tar.gz linhes_pkgbuild-4da2eb96f5540b6658d7113eba443a423f924f1f.tar.bz2 |
Merge branch 'testing' of ssh://linhes.org/mount/repository/linhes_pkgbuild into testing
Diffstat (limited to 'abs/core/python_modules/python-gitdb/PKGBUILD')
-rw-r--r-- | abs/core/python_modules/python-gitdb/PKGBUILD | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/abs/core/python_modules/python-gitdb/PKGBUILD b/abs/core/python_modules/python-gitdb/PKGBUILD new file mode 100644 index 0000000..a7a6f71 --- /dev/null +++ b/abs/core/python_modules/python-gitdb/PKGBUILD @@ -0,0 +1,19 @@ +# Contributor: Jon Bergli Heier <snakebite@jvnv.net> +pkgname=python-gitdb +pkgver=0.5.2 +pkgrel=1 +pkgdesc="IO of git-style object databases" +arch=('i686' 'x86_64') +url="http://pypi.python.org/pypi/gitdb" +license=('BSD') +depends=('python2' 'python-async') +source=("http://pypi.python.org/packages/source/g/gitdb/gitdb-${pkgver}.tar.gz") + +md5sums=('98655385607aed62101318051f7c9364') + +build() { + cd "$srcdir/gitdb-$pkgver" + python2 setup.py install --root="$pkgdir/" || return 1 +} +# vim:set ts=2 sw=2 et: + |