Skip to content

Commit

Permalink
Release v1.3-4
Browse files Browse the repository at this point in the history
  • Loading branch information
igor725 committed Jan 17, 2024
1 parent ba92794 commit 48a8c1a
Show file tree
Hide file tree
Showing 2 changed files with 86 additions and 0 deletions.
43 changes: 43 additions & 0 deletions rockspecs/lua-vosk-1.3-3.rockspec
Original file line number Diff line number Diff line change
@@ -0,0 +1,43 @@
package = 'lua-vosk'
version = '1.3-3'

source = {
url = 'git+https://github.com/igor725/lua-vosk',
tag = 'v1.3-3'
}

description = {
summary = 'Vosk binding for Lua.',
detailed = [[
Vosk is an offline open source speech recognition toolkit.
It enables speech recognition for 20+ languages and dialects -
English, Indian English, German, French, Spanish, Portuguese,
Chinese, Russian, Turkish, Vietnamese, Italian, Dutch, Catalan,
Arabic, Greek, Farsi, Filipino, Ukrainian, Kazakh, Swedish,
Japanese, Esperanto, Hindi, Czech, Polish.
This library implements easy to use interface for Vosk API.
]],
homepage = 'https://github.com/igor725/lua-vosk',
license = 'MIT'
}

dependencies = {
'lua >= 5.1'
}

build = {
type = 'builtin',
modules = {
luavosk = {
sources = {
'src/luamodel.c', 'src/luarecognizer.c',
'src/luaspkmodel.c', 'src/main.c',
'src/voskbridge.c'
},
defines = {
'VOSK_ENABLE_JSON'
}
}
}
}
43 changes: 43 additions & 0 deletions rockspecs/lua-vosk-1.3-4.rockspec
Original file line number Diff line number Diff line change
@@ -0,0 +1,43 @@
package = 'lua-vosk'
version = '1.3-4'

source = {
url = 'git+https://github.com/igor725/lua-vosk',
tag = 'v1.3-4'
}

description = {
summary = 'Vosk binding for Lua.',
detailed = [[
Vosk is an offline open source speech recognition toolkit.
It enables speech recognition for 20+ languages and dialects -
English, Indian English, German, French, Spanish, Portuguese,
Chinese, Russian, Turkish, Vietnamese, Italian, Dutch, Catalan,
Arabic, Greek, Farsi, Filipino, Ukrainian, Kazakh, Swedish,
Japanese, Esperanto, Hindi, Czech, Polish.
This library implements easy to use interface for Vosk API.
]],
homepage = 'https://github.com/igor725/lua-vosk',
license = 'MIT'
}

dependencies = {
'lua >= 5.1'
}

build = {
type = 'builtin',
modules = {
luavosk = {
sources = {
'src/luamodel.c', 'src/luarecognizer.c',
'src/luaspkmodel.c', 'src/main.c',
'src/voskbridge.c'
},
defines = {
'VOSK_ENABLE_JSON'
}
}
}
}

0 comments on commit 48a8c1a

Please sign in to comment.