diff --git a/README.md b/README.md index 369a85b..e67f01b 100644 --- a/README.md +++ b/README.md @@ -4,7 +4,7 @@ Easy text-to-speech in Lua with MS SAPI ( https://en.wikipedia.org/wiki/Microsof ## Dependencies -LuaCOM ( https://github.com/davidm/luacom ) +LuaCOM ( https://github.com/davidm/luacom or maybe better https://github.com/moteus/luacom ) ### Note for use on non-Microsoft systems with Wine diff --git a/microsoftsapi-1.1.0-1.rockspec b/microsoftsapi-1.1.0-1.rockspec new file mode 100644 index 0000000..a46f74e --- /dev/null +++ b/microsoftsapi-1.1.0-1.rockspec @@ -0,0 +1,36 @@ +package = "MicrosoftSAPI" +version = "1.1.0-1" +source = { + url = "git://github.com/fiendish/ms_speech_api_lua", + tag = "v1.1.0" +} +description = { + summary = "Lua COM interface for Microsoft Speech API", + detailed = [[ + LuaSAPI provides a simple and intuitive interface for doing + text-to-speech operations using the Microsoft Speech API in + Windows or WINE with Lua. + + Using it can be as easy as: + + sapi = require "sapi_interface" + sapi.say("SAPI interface is ready") + sapi.speech_demo() + + Documentation is in the source repository README file in GitHub Flavored Markdown. + ]], + homepage = "https://github.com/fiendish/ms_speech_api_lua", + license = "GPL-3" +} +dependencies = { + "lua >= 5.1", + "luacom" +} +build = { + type = "none", + install = { + lua = { + ["sapi_interface"] = "sapi_interface.lua", + } + }, +} diff --git a/microsoftsapi-scm-1.rockspec b/microsoftsapi-scm-1.rockspec new file mode 100644 index 0000000..4020b1d --- /dev/null +++ b/microsoftsapi-scm-1.rockspec @@ -0,0 +1,35 @@ +package = "MicrosoftSAPI" +version = "scm-1" +source = { + url = "git://github.com/fiendish/ms_speech_api_lua", +} +description = { + summary = "Lua COM interface for Microsoft Speech API", + detailed = [[ + LuaSAPI provides a simple and intuitive interface for doing + text-to-speech operations using the Microsoft Speech API in + Windows or WINE with Lua. + + Using it can be as easy as: + + sapi = require "sapi_interface" + sapi.say("SAPI interface is ready") + sapi.speech_demo() + + Documentation is in the source repository README file in GitHub Flavored Markdown. + ]], + homepage = "https://github.com/fiendish/ms_speech_api_lua", + license = "GPL-3" +} +dependencies = { + "lua >= 5.1", + "luacom" +} +build = { + type = "none", + install = { + lua = { + ["sapi_interface"] = "sapi_interface.lua", + } + }, +}