mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2025-07-23 19:25:25 +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
30 lines
793 B
Text
30 lines
793 B
Text
# Maintainer: Marian Buschsieweke <marian.buschsieweke@ovgu.de>
|
|
_pkgname=pygdbmi
|
|
pkgname=py3-$_pkgname
|
|
pkgver=0.10.0.2
|
|
pkgrel=1
|
|
pkgdesc="Get Structured Output from GDB's Machine Interface"
|
|
options="!check" # No testsuite
|
|
url="https://github.com/cs01/pygdbmi"
|
|
arch="noarch"
|
|
license="MIT"
|
|
depends="python3"
|
|
makedepends="py3-setuptools"
|
|
source="https://files.pythonhosted.org/packages/source/${_pkgname:0:1}/$_pkgname/$_pkgname-$pkgver.tar.gz"
|
|
builddir="$srcdir"/$_pkgname-$pkgver
|
|
|
|
build() {
|
|
python3 setup.py build
|
|
}
|
|
|
|
package() {
|
|
python3 setup.py install --skip-build --root="$pkgdir"
|
|
}
|
|
|
|
check() {
|
|
python3 setup.py check
|
|
}
|
|
|
|
sha512sums="
|
|
a43b2d328272f09230a97fee4ccf79026708ef6cfe4f199a8b62d80ea2f0d333b77e27a93b8e3e057201b7f71a6c637fe73bdacc15b3a5aa513b6997097192bb pygdbmi-0.10.0.2.tar.gz
|
|
"
|