summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: 769f3767abaaef156221f16e5273fec042010aa4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
pkgname=sip-pre-release
pkgver=6.8.2
pkgrel=1
arch=(x86_64)
pkgdesc='The pre-release version of the tool that makes it easy to create Python bindings for C and C++ libraries'
url='https://www.riverbankcomputing.com/software/sip/intro'
license=('custom:"sip"')
provides=(sip)
conflicts=(sip)
depends=(
    python-toml 
    python-packaging 
    python-setuptools 
    python-ply
)
makedepends=(
    python-build 
    python-installer 
    python-wheel
)
source=(https://www.riverbankcomputing.com/pypi/packages/sip/sip-6.8.2.dev2312122232.tar.gz)
md5sums=('SKIP')  # changing everyday

_dir=sip-6.8.2.dev2312122232
build() {
  cd $_dir
  python -m build --wheel --no-isolation
}

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