git » python-build.git » main » tree

[main] / PKGBUILD

# Maintainer: Filipe LaĆ­ns (FFY00) <lains@archlinux.org>
# Maintainer: Daniel M. Capella <polyzen@archlinux.org>

_pkgname=build
pkgname=python-$_pkgname
pkgver=1.2.1
pkgrel=2
pkgdesc='A simple, correct Python build frontend'
arch=('any')
url='https://github.com/pypa/build'
license=('MIT')
depends=('python' 'python-packaging' 'python-pyproject-hooks')
makedepends=(
  'git'
)
optdepends=(
  'python-pip: to use as the Python package installer (default)'
  'python-uv: to use as the Python package installer'
  'python-virtualenv: to use virtualenv for build isolation'
)
source=("$pkgname::git+$url#tag=$pkgver?signed")

build() {
  cd $pkgname
  pip3 wheel -w dist --no-build-isolation --no-deps --no-cache-dir $PWD
}

package() {
  cd $pkgname
  pip3 install --root="$pkgdir" --no-index --find-links=dist --no-cache-dir --no-user $_pkgname

}
sha256sums=('d257687b7d2bb8f0c3906fd429d72afad5b34b3b8551c4f428a13d8a66d56578')