🗝
about summary refs log tree commit diff
path: root/PKGBUILD
blob: 880f455bf4081d41e38fec00006c9b08bec7d8c7 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
pkgname=zoner
pkgver=1
pkgrel=1
arch=(any)
makedepends=(python-build python-installer python-wheel)
depends=(python-requests)
source=(pyproject.toml zoner.py)
sha256sums=(SKIP SKIP)
license=(MIT)

build() {
    python -m build --wheel --no-isolation
}

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