From 7a7bb361396e03707f1f12b10fb61f5d31d91280 Mon Sep 17 00:00:00 2001 From: mia Date: Wed, 24 Apr 2024 22:44:53 -0700 Subject: initial commit --- PKGBUILD | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 PKGBUILD (limited to 'PKGBUILD') diff --git a/PKGBUILD b/PKGBUILD new file mode 100644 index 0000000..880f455 --- /dev/null +++ b/PKGBUILD @@ -0,0 +1,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 +} -- cgit 1.4.1