blob: 3050d8f26b1b32468adc7717daa6a5b406e7778b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
# Contributor: Bart Ribbers <bribbers@disroot.org>
# Maintainer: Bart Ribbers <bribbers@disroot.org>
pkgname=mycroft-skill-speak
pkgver=20.02_git20200409
pkgrel=0
_commit="a3edc6a882873d71b7f55f7e8b0c4b55d09e8721"
pkgdesc="Mycroft AI official Speak Skill - make Mycroft speak back text"
url="https://mycroft.ai/skills"
arch="noarch"
license="Apache-2.0"
depends="python3"
source="https://github.com/mycroftai/skill-speak/archive/$_commit/skills-speak-$_commit.tar.gz"
options="!check" # No tests
builddir="$srcdir/skill-speak-$_commit"
package() {
mkdir -p "$pkgdir"/usr/share/mycroft/skills/mycroft-speak.mycroftai
cp -r ./* "$pkgdir"/usr/share/mycroft/skills/mycroft-speak.mycroftai/
}
sha512sums="c15e3cbf8b5dedd874241aab6a5c4ac9e59aa92d1eae278b8bcd526f18d8d6a716e2821b75f8635c54dffdf4f92cfa7a80176f53bf847338b39d29367da9e40d skills-speak-a3edc6a882873d71b7f55f7e8b0c4b55d09e8721.tar.gz"
|