mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2025-08-27 01:11:33 +02:00
38 lines
1009 B
Plaintext
38 lines
1009 B
Plaintext
# Contributor: Pierre-Gildas MILLON <pgmillon@gmail.com>
|
|
# Maintainer:
|
|
pkgname=py-pygit2
|
|
pkgver=0.23.1
|
|
pkgrel=0
|
|
pkgdesc="Python bindings for libgit2"
|
|
url=https://github.com/libgit2/pygit2
|
|
arch=all
|
|
license=GPLv2
|
|
depends=
|
|
makedepends="py-setuptools py-cffi python-dev libgit2-dev"
|
|
source=pygit2-${pkgver}.tar.gz::https://github.com/libgit2/pygit2/archive/v${pkgver}.tar.gz
|
|
|
|
_builddir=$srcdir/pygit2-$pkgver
|
|
prepare() {
|
|
local i
|
|
cd "$_builddir"
|
|
for i in $source; do
|
|
case $i in
|
|
*.patch) msg $i; patch -p1 -i "$srcdir"/$i || return 1;;
|
|
esac
|
|
done
|
|
}
|
|
|
|
build() {
|
|
cd "$_builddir"
|
|
python setup.py build
|
|
}
|
|
|
|
package() {
|
|
cd "$_builddir"
|
|
python setup.py install --root "$pkgdir"
|
|
}
|
|
|
|
md5sums="ad1e53c55d7297ab0d84f9cbb9fc592b pygit2-0.23.1.tar.gz"
|
|
sha256sums="7ce72913a183696f90563b5710fdcb78af2559959019349de794fd1d0f8dce19 pygit2-0.23.1.tar.gz"
|
|
sha512sums="12a36cadb5292116e7a663eda62e2ccd13af8b33d0e86c8eadfbcbe838629a369fcfddcefc7a2cca6b0d6c54df60010ae891ff77e0f3ccfd48de02776ed77cfb pygit2-0.23.1.tar.gz"
|