blob: 36177652edc40dbadb868e7c891deb123ea8411a (
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-timer
pkgver=20.02_git20200409
pkgrel=0
_commit="458e23fe55418488866a2bf2703f89c3ee0683df"
pkgdesc="Mycroft AI official Timer Skill - set multiple named timers"
url="https://mycroft.ai/skills"
arch="noarch"
license="Apache-2.0"
depends="python3 py3-num2words"
source="https://github.com/mycroftai/mycroft-timer/archive/$_commit/mycroft-timer-$_commit.tar.gz"
options="!check" # No tests
builddir="$srcdir/mycroft-timer-$_commit"
package() {
mkdir -p "$pkgdir"/usr/share/mycroft/skills/mycroft-timer.mycroftai
cp -r ./* "$pkgdir"/usr/share/mycroft/skills/mycroft-timer.mycroftai/
}
sha512sums="93419ac7d64f2daa24c54b4f41a2b9cc998d7244f1c93fee550f1181626728725e7d7445a5b24cbd64961b18035e6c5798a5647ee3fcddc16393cfa96ba8b88d mycroft-timer-458e23fe55418488866a2bf2703f89c3ee0683df.tar.gz"
|