#!/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 }