mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2026-01-05 16:52:06 +01:00
32 lines
797 B
Plaintext
32 lines
797 B
Plaintext
# Maintainer: psykose <alice@ayaya.dev>
|
|
pkgname=py3-meson-python
|
|
pkgver=0.10.0
|
|
pkgrel=0
|
|
pkgdesc="Meson PEP 517 Python build backend"
|
|
url="https://github.com/mesonbuild/meson-python"
|
|
arch="noarch"
|
|
license="MIT"
|
|
depends="
|
|
meson
|
|
py3-pyproject-metadata
|
|
py3-tomli
|
|
python3
|
|
"
|
|
checkdepends="py3-pytest"
|
|
source="$pkgname-$pkgver.tar.gz::https://github.com/mesonbuild/meson-python/archive/refs/tags/$pkgver.tar.gz"
|
|
builddir="$srcdir/meson-python-$pkgver"
|
|
options="!check" # no tests via meson
|
|
|
|
build() {
|
|
abuild-meson . output
|
|
meson compile -C output
|
|
}
|
|
|
|
package() {
|
|
DESTDIR="$pkgdir" meson install --no-rebuild -C output
|
|
}
|
|
|
|
sha512sums="
|
|
50d4d0bbf810948b4f218f25815058778b2a3ac8ff811d4d7cc699d1cfbcb75612d28789080b4e5ec3a47be03636389b7bf313366273abb733f77644758747cb py3-meson-python-0.10.0.tar.gz
|
|
"
|