summarylogtreecommitdiffstats
diff options
context:
space:
mode:
authorJonas Heinrich2019-02-07 15:22:29 +0100
committerJonas Heinrich2019-02-07 15:22:29 +0100
commit04830790c4279b128b39737edca513fce348f9b3 (patch)
tree71c490d7f43ba881e15b84fd86c44d6d700a117c
downloadaur-04830790c4279b128b39737edca513fce348f9b3.tar.gz
first commit
-rw-r--r--.SRCINFO14
-rw-r--r--PKGBUILD18
2 files changed, 32 insertions, 0 deletions
diff --git a/.SRCINFO b/.SRCINFO
new file mode 100644
index 000000000000..30d4e5db8260
--- /dev/null
+++ b/.SRCINFO
@@ -0,0 +1,14 @@
+# Generated by mksrcinfo v8
+# Thu Feb 7 14:21:54 UTC 2019
+pkgbase = snowboy
+ pkgdesc = DNN based hotword and wake word detection toolkit
+ pkgver = 1.3.0
+ pkgrel = 1
+ url = https://github.com/Kitt-AI/snowboy
+ arch = x86_64
+ license = Apache
+ source = snowboy-1.3.0.tar.gz::https://github.com/Kitt-AI/snowboy/archive/v1.3.0.tar.gz
+ sha512sums = 3edd3038c11beb9ecc9a7f73f91c7097ec869841eade6715df061987313cdad60d7090d494f3d161bf64c921d5f75e8f64a2befc6bf7202b468f0122c7ecff1a
+
+pkgname = snowboy
+
diff --git a/PKGBUILD b/PKGBUILD
new file mode 100644
index 000000000000..4f5f4bababd6
--- /dev/null
+++ b/PKGBUILD
@@ -0,0 +1,18 @@
+# Maintainer: Jonas Heinrich <onny@project-insanity.org>
+# Contributor: Jonas Heinrich <onny@project-insanity.org>
+
+pkgname=snowboy
+pkgver=1.3.0
+pkgrel=1
+pkgdesc="DNN based hotword and wake word detection toolkit"
+arch=('x86_64')
+url="https://github.com/Kitt-AI/snowboy"
+license=('Apache')
+source=("${pkgname}-${pkgver}.tar.gz::https://github.com/Kitt-AI/snowboy/archive/v${pkgver}.tar.gz")
+sha512sums=('3edd3038c11beb9ecc9a7f73f91c7097ec869841eade6715df061987313cdad60d7090d494f3d161bf64c921d5f75e8f64a2befc6bf7202b468f0122c7ecff1a')
+
+package() {
+ install -D "${srcdir}/${pkgname}-${pkgver}/lib/ubuntu64/snowboy-detect.a" "${pkgdir}/usr/lib/snowboy-detect.a"
+ install -D "${srcdir}/${pkgname}-${pkgver}/include/snowboy-detect.h" "${pkgdir}/usr/include/snowboy-detect.h"
+ install -D "${srcdir}/${pkgname}-${pkgver}/LICENSE" "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
+}