diff --git a/PKGBUILD b/PKGBUILD index 3b29f8c..f356bf7 100644 --- a/PKGBUILD +++ b/PKGBUILD @@ -6,20 +6,20 @@ # Maintainer: Future Linux Team pkgname=python-installer pkgver=0.7.0 -pkgrel=1 +pkgrel=2 pkgdesc="Low-level library for installing a Python package from a wheel distribution" arch=('x86_64') url="https://pypi.org/project/installer/" license=('MIT') depends=('python') -makedepends=('python-flit-core') +makedepends=('python-flit-core' 'python-build') source=(https://github.com/pypa/installer/archive/${pkgver}/${pkgname#*-}-${pkgver}.tar.gz) sha256sums=(e1589201863a6b6f570ce2f9994febe54a8d9196e0cc54fd331cd7ffd728fb86) build() { cd ${pkgname#*-}-${pkgver} - python3 -m flit_core.wheel + python3 -m build -wn --skip-dependency-check } package() {