blob: 8d0a3c5a5fe1067859d7974d620db2fed4ff3801 (
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
|
# Maintainer: Dmitriy Q atsip-help <at> yandex <dot> ru
pkgname=python-contact
_name=${pkgname#python-}
pkgver=1.6.7
pkgrel=1
arch=('any')
license=('GPLv3')
pkgdesc="A Console UI for Meshtastic"
url="https://github.com/pdxlocations/contact"
depends=('python>=3.10' 'meshtastic-python' 'python-pyserial')
makedepends=('python-build' 'python-installer' 'python-wheel' 'git' 'python-virtualenv' 'python-poetry' 'python-poetry-core')
source=("${url}/releases/download/${pkgver}/${_name}-${pkgver}.tar.gz")
sha256sums=('0c33347996fdb50ce456bfbb1930e53ea9a04e7fd1a2909c128f83a20e01a06b')
build() {
cd "${_name}-${pkgver}"
python -m build --wheel --no-isolation
}
package() {
cd "${_name}-${pkgver}"
python -m installer --destdir="$pkgdir" dist/*.whl
}
|