blob: 37b9c0712653dfaa0e6bd95d6af8ac098a794644 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
|
# Contributor: Fabian Affolter <fabian@affolter-engineering.ch>
# Maintainer: Fabian Affolter <fabian@affolter-engineering.ch>
pkgname=py-dulwich
_pkgname=dulwich
pkgver=0.9.7
pkgrel=0
pkgdesc="A python implementation of the Git file formats and protocols"
url="http://www.samba.org/~jelmer/dulwich/"
arch="all"
license="GPL2+ or ASL 2.0"
depends=""
depends_dev=""
makedepends="python-dev py-setuptools"
install=""
subpackages=""
source="http://pypi.python.org/packages/source/${_pkgname:0:1}/$_pkgname/$_pkgname-$pkgver.tar.gz"
_builddir="$srcdir"/$_pkgname-$pkgver
build() {
cd "$_builddir"
python setup.py build || return 1
}
package() {
cd "$_builddir"
python setup.py install --prefix=/usr --root="$pkgdir" || return 1
}
md5sums="67373bc293d25fe0f67161b7151f5aa9 dulwich-0.9.7.tar.gz"
sha256sums="12e77b0434a3bb3075e9c96e608ee9c3f85e49bc9c8335139aba8795de4000f3 dulwich-0.9.7.tar.gz"
sha512sums="163a3df862e72d8bda5119a381868e7e64edb37973c206aa3f8eb850c6207d3ab5399c97b25adf543f57bdef46e5d3ebd8d2d5e45f5b3ed9babf64ae94f77386 dulwich-0.9.7.tar.gz"
|