git » sip.git » main » tree

[main] / PKGBUILD

# Maintainer: Antonio Rojas <arojas@archlinux.org>

pkgname=sip
pkgver=6.8.3
pkgrel=3
arch=(any)
pkgdesc='A tool that makes it easy to create Python bindings for C and C++ libraries'
url='https://www.riverbankcomputing.com/'
license=('custom:"sip"')
depends=(python
         python-packaging
         python-setuptools)
makedepends=(python-build
             python-installer
             python-wheel)
source=(https://pypi.python.org/packages/source/s/sip/$pkgname-$pkgver.tar.gz)
sha256sums=('888547b018bb24c36aded519e93d3e513d4c6aa0ba55b7cc1affbd45cf10762c')

build() {
  cd $pkgname-$pkgver
  python -m build --wheel --no-isolation
}

package() {
  cd $pkgname-$pkgver
  python -m installer --destdir="$pkgdir" dist/*.whl
}