mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2025-07-23 03:05:48 +03:00
this marginally increases install speed by not checking if it needs a rebuild. also remove --prefix=/usr as it defaults to /usr already. might break a build or two, will fix later
31 lines
834 B
Text
31 lines
834 B
Text
# Contributor: Bart Ribbers <bribbers@disroot.org>
|
|
# Maintainer: Bart Ribbers <bribbers@disroot.org>
|
|
pkgname=gbinder-python
|
|
pkgver=1.1.1
|
|
pkgrel=1
|
|
pkgdesc="Python bindings for libgbinder"
|
|
url="https://github.com/erfanoabdi/gbinder-python"
|
|
# s390x blocked by libgbinder
|
|
arch="all !s390x"
|
|
license="GPL-3.0-only"
|
|
depends="python3"
|
|
makedepends="
|
|
cython
|
|
libgbinder-dev
|
|
py3-setuptools
|
|
python3-dev
|
|
"
|
|
source="https://github.com/erfanoabdi/gbinder-python/archive/$pkgver/gbinder-python-$pkgver.tar.gz"
|
|
options="!check" # No properly runnable tests
|
|
|
|
build() {
|
|
python3 setup.py build --cython
|
|
}
|
|
|
|
package() {
|
|
python3 setup.py install --skip-build --root="$pkgdir"
|
|
}
|
|
|
|
sha512sums="
|
|
1910d6e904ac46da519064e9dc57e4059e1ea7072f2cf4b7ca0888a73701a590ff565fe9e9ca67acf94dba2a69f3138457d8b9533c2360befdd508b983f32a03 gbinder-python-1.1.1.tar.gz
|
|
"
|