summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: 3ba9f0aa98d84e50d6106ef4fe62c47745c2cf91 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
pkgname=python2-dulwich
pkgver=0.9.7
pkgrel=1
pkgdesc="Dulwich is a pure-Python implementation of the Git file formats and protocols."
arch=('i686' 'x86_64')
url="http://samba.org/~jelmer/dulwich/"
license=('GPL2')
depends=('python2')

source=("https://pypi.python.org/packages/source/d/dulwich/dulwich-$pkgver.tar.gz")
sha1sums=("0823f65c77ac75372560a5336c8e593725b05944")

package() {
  cd "$srcdir/dulwich-$pkgver"
  python2 setup.py install --root="$pkgdir" --optimize=1
}