diff --git a/PKGBUILD b/PKGBUILD index c93b4c1..deeda51 100644 --- a/PKGBUILD +++ b/PKGBUILD @@ -6,19 +6,20 @@ # Maintainer: Future Linux Team pkgname=python-flit-core pkgver=3.9.0 -pkgrel=1 +pkgrel=2 pkgdesc="A PEP 517 build backend for packages using Flit" arch=('x86_64') url="https://pypi.org/project/flit-core/" license=('BSD') depends=('python') +makedepends=('python-build' 'python-installer') source=(https://pypi.org/packages/source/f/flit-core/flit_core-${pkgver}.tar.gz) sha256sums=(72ad266176c4a3fcfab5f2930d76896059851240570ce9a98733b658cb786eba) build() { cd flit_core-${pkgver} - python3 -m flit_core.wheel + python3 -m build --wheel --skip-dependency-check --no-isolation }