mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2025-06-07 12:54:32 +02:00
28 lines
850 B
Text
28 lines
850 B
Text
# Contributor: jahway603 <jahway603@tutanota.de>
|
|
# Maintainer: jahway603 <jahway603@tutanota.de>
|
|
pkgname=nomadnet
|
|
pkgver=0.7.0
|
|
pkgrel=0
|
|
pkgdesc="Off-grid, resilient mesh communication with strong encryption"
|
|
url="https://github.com/markqvist/nomadnet"
|
|
arch="all"
|
|
license="GPLv3"
|
|
depends="python3 py3-lxmf py3-urwid"
|
|
makedepends="py3-gpep517 py3-setuptools py3-wheel wget"
|
|
subpackages="$pkgname-pyc"
|
|
source="$pkgname-$pkgver.tar.gz::$url/archive/refs/tags/$pkgver.tar.gz"
|
|
builddir="$srcdir/NomadNet-$pkgver"
|
|
options="!check" # no tests
|
|
|
|
build() {
|
|
gpep517 build-wheel \
|
|
--wheel-dir .dist \
|
|
--output-fd 3 3>&1 >&2
|
|
}
|
|
|
|
package() {
|
|
python3 -m installer -d "$pkgdir" \
|
|
.dist/*.whl
|
|
}
|
|
|
|
sha512sums="aae02e51910d4c912196f1f486951da386064f893ef49dba6e5157f6354bde8c382b931176815bf0879982b7171740178df46131ff920abcd49b3a0e0e42ecbe nomadnet-0.7.0.tar.gz"
|