From 202aa6e140955ef53ac546224f0f252c71ca9f19 Mon Sep 17 00:00:00 2001 From: mio Date: Tue, 26 Apr 2022 15:59:29 +0000 Subject: [PATCH] Add dev rockspec by Will Sinatra --- rockspecs/itte-scm-1.rockspec | 30 ++++++++++++++++++++++++++++++ 1 file changed, 30 insertions(+) create mode 100644 rockspecs/itte-scm-1.rockspec diff --git a/rockspecs/itte-scm-1.rockspec b/rockspecs/itte-scm-1.rockspec new file mode 100644 index 0000000..b8f3534 --- /dev/null +++ b/rockspecs/itte-scm-1.rockspec @@ -0,0 +1,30 @@ +package = "itte" +version = "scm-1" +source = { + url = "git+https://git.tilde.town/mio/itte", +} +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" + }, +}