blob: dbb28c1e48af42c5e3903344bec89819dbd3e450 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
#!/bin/sh
MAKEDEPS="python"
DEPS="python python-tomli"
PKG_VER=0.13.0
SOURCE="https://files.pythonhosted.org/packages/4d/19/e11fcc88288f68ae48e3aa9cf5a6fd092a88e629cb723465666c44d487a0/pep517-$PKG_VER.tar.gz"
DESC="Correct PEP517 package builder"
build() {
python -m build --no-isolation --wheel
}
package () {
python -m installer -d "$PKG_DEST" dist/pep517-$PKG_VER-py3-none-any.whl
}
|