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

source=("https://www.dulwich.io/releases/dulwich-$pkgver.tar.gz")
sha1sums=('732ade83279ca38c4466eac57b58568fd397fdf5')

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