blob: 2db90da8b94dc85fc23a6c72101fc6df44ad819b (
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
32
33
34
35
36
37
38
|
#!/bin/mkpkg
# description: A simple, correct Python build frontend
# url: https://build.pypa.io
name=py-build
_name=build
version=1.6.1
release=4
depends=(python3 py-packaging py-pyproject_hooks)
makedeps=(py-installer py-flit_core)
source=(https://files.pythonhosted.org/packages/source/b/build/$_name-$version.tar.gz)
sha256sums=(
"51cc11666391ab6f092070437ac747002ff46f3e4113a3622177ee6b488bfc53"
)
build() {
cd $_name-$version
# Build wheel with flit_core directly (no PEP 517 frontend needed)
/usr/bin/python3 -m flit_core.wheel --outdir dist
_pyver=$(/usr/bin/python3 -c 'import sys; print(f"{sys.version_info.major}.{sys.version_info.minor}")')
_sitedir="$PKG/usr/lib/python${_pyver}/site-packages"
install -dm755 "$_sitedir"
/usr/bin/python3 -m installer --no-compile-bytecode --destdir "$PKG" --prefix /usr dist/*.whl
find "$_sitedir" -type d \( -name tests -o -name test \) -prune -exec rm -rf {} +
find "$_sitedir" -name "*.exe" -delete
}
signify() {
untrusted comment: public key
RWTZ9IduCSQ/mL8337TEUinPwT92xFEUpD92hkS7IxcOnzTt9QdpohT3
}
# vim: filetype=sh
|