blob: 5254a8b9ac940b7c6f247b732ce1837cd611e98d (
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
33
34
35
36
|
# Contributor: Bart Ribbers <bribbers@disroot.org>
# Maintainer: Bart Ribbers <bribbers@disroot.org>
pkgname=hivemind-ptt
pkgver=0.1.6
pkgrel=3
pkgdesc="Mycroft Push to Talk Satellite"
url="https://github.com/JarbasHiveMind/HiveMind-PTT"
arch="noarch"
license="Apache-2.0"
depends="
py3-jarbas-hive-mind
py3-ovos-utils
py3-json-database
py3-psutil
py3-pyaudio
py3-pyee
py3-requests
py3-requests-futures
py3-speech2text
py3-text2speech
python3
"
makedepends="py3-setuptools"
source="https://pypi.python.org/packages/source/H/HiveMind-PtT/HiveMind-PtT-$pkgver.tar.gz"
options="!check" # No tests
builddir="$srcdir/HiveMind-PtT-$pkgver"
build() {
python3 setup.py build
}
package() {
python3 setup.py install --skip-build --root="$pkgdir"
}
sha512sums="cb2b0b08bdd0725f16fc93bcdfa58ff6fd91a120e2c4df1bf84ff5a9e3bfce70f1a886ea3cc0d35fd1b3216ff891ee0b87a697192307a0be07ae73895ebb10aa HiveMind-PtT-0.1.6.tar.gz"
|