Add rockspec by Will Sinatra

trunk
mio 2022-04-25 21:01:19 +00:00
parent de2643183f
commit a4a6b35d3e
2 changed files with 36 additions and 0 deletions

View File

@ -16,6 +16,11 @@ Currently supported:
Please see the [docs](docs/README.md). Please see the [docs](docs/README.md).
## Contributions
[Luarocks rockspec](https://luarocks.org/modules/durrendal/itte) from [Will Sinatra](http://lambdacreate.com)
## License ## License
[BSD-3.0](https://opensource.org/licenses/BSD-3-Clause) [BSD-3.0](https://opensource.org/licenses/BSD-3-Clause)

View File

@ -0,0 +1,31 @@
package = "itte"
version = "1.1-1"
source = {
url = "git+https://git.tilde.town/mio/itte",
tag = "1.1",
}
description = {
summary = "Mini IRC bot module in lua",
detailed = [[
Currently supports:
- Authentication via SASL (plain) or Nickserv
- Joining multiple servers
- Ad-hoc connecting to servers and joining channels
- Config reload
]],
homepage = "https://git.tilde.town/mio/itte",
license = "BSD-3.0"
}
dependencies = {
"lua >= 5.1, < 5.4",
"luasec >= 0.9",
"luasocket >= 2.9"
}
supported_platforms = { "linux" }
build = {
type = "builtin",
modules = {
itte = "itte.lua",
itteutil = "itteutil.lua"
},
}