blob: 01395cfefd659a50b6aaf4661b17b5859104b38b (
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
|
#
# Generated by pypi2aur from pypi package nava
# Date 2025-04-29 13:58:32
#
#
pkgname=python-nava
pkgbase=python-nava
_origpkgname=nava
pkgver=0.7
pkgrel=5
pkgdesc="A Python library for playing sound everywhere natively and securely."
arch=("x86_64")
url='https://pypi.org/project/nava/'
license=("MIT")
depends=("python-art")
makedepends=(
"python-build"
"python-installer"
"python-wheel"
"python-setuptools"
"python-hatchling"
)
source=("https://github.com/openscilab/nava/archive/refs/tags/v0.7.tar.gz")
sha256sums=('SKIP')
package() {
cd "${_origpkgname}-${pkgver}" || exit
python -m build --wheel --no-isolation
python -m installer --destdir="$pkgdir" dist/*.whl
install -Dm644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
}
# vim:set ts=2 sw=2 et:
|