diff options
author | amanarora_09 <aman.arora9848@gmail.com> | 2023-03-28 22:27:17 +0200 |
---|---|---|
committer | Jan-Simon Moeller <jsmoeller@linuxfoundation.org> | 2023-08-08 20:38:17 +0200 |
commit | 8eb3ea414f84d3f28c14231ee8dda7876295e48e (patch) | |
tree | e11001ae1228054657ec475add06f1278d7a900a /meta-offline-voice-agent/recipes-python/python3-vosk-websocket-server/python3-vosk-websocket-server_git.bb | |
parent | fe8c4a516b3bff5f531caebd43c1f1ac137b9959 (diff) |
Rework and update offline voice agent
This brings the voice agent to the state shown at AMM and EW.
Change-Id: I31ac4adc874a206e6e598ba116523ecc7eb99fc9
Signed-off-by: amanarora_09 <aman.arora9848@gmail.com>
Signed-off-by: Jan-Simon Moeller <jsmoeller@linuxfoundation.org>
Diffstat (limited to 'meta-offline-voice-agent/recipes-python/python3-vosk-websocket-server/python3-vosk-websocket-server_git.bb')
-rw-r--r-- | meta-offline-voice-agent/recipes-python/python3-vosk-websocket-server/python3-vosk-websocket-server_git.bb | 25 |
1 files changed, 10 insertions, 15 deletions
diff --git a/meta-offline-voice-agent/recipes-python/python3-vosk-websocket-server/python3-vosk-websocket-server_git.bb b/meta-offline-voice-agent/recipes-python/python3-vosk-websocket-server/python3-vosk-websocket-server_git.bb index 1a77f7d2..1cdf89c5 100644 --- a/meta-offline-voice-agent/recipes-python/python3-vosk-websocket-server/python3-vosk-websocket-server_git.bb +++ b/meta-offline-voice-agent/recipes-python/python3-vosk-websocket-server/python3-vosk-websocket-server_git.bb @@ -11,23 +11,18 @@ SRCREV = "70f3d5321a40f2f5dffe9c833bc1fac4b3b451e7" S = "${WORKDIR}/git" +do_configure[noexec] = "1" +do_compile[noexec] = "1" + +do_install () { + install -d ${D}${bindir} + cp ${S}/websocket/asr_server.py ${D}${bindir}/vosk-websocket-python.py + chmod a+x ${D}${bindir}/vosk-websocket-python.py +} + RDEPENDS:${PN} += " \ vosk \ python3-vosk-api \ python3-websockets \ virtual/vosk-model \ -" - -do_configure () { - : -} - -do_compile () { - : -} - -do_install () { - install -d ${D}${bindir} - cp ${S}/websocket/asr_server.py ${D}${bindir}/vosk-websocket-python.py - chmod a+x ${D}${bindir}/vosk-websocket-python.py -} +"
\ No newline at end of file |