Skip to content

Commit

Permalink
update version info
Browse files Browse the repository at this point in the history
  • Loading branch information
fiendish committed Jun 3, 2021
1 parent d0173de commit f12721e
Show file tree
Hide file tree
Showing 3 changed files with 72 additions and 1 deletion.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down
36 changes: 36 additions & 0 deletions microsoftsapi-1.1.0-1.rockspec
Original file line number Diff line number Diff line change
@@ -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",
}
},
}
35 changes: 35 additions & 0 deletions microsoftsapi-scm-1.rockspec
Original file line number Diff line number Diff line change
@@ -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",
}
},
}

0 comments on commit f12721e

Please sign in to comment.