From 9d4893b9b484eb9914e9d60d12a895280d3ac30f Mon Sep 17 00:00:00 2001 From: shahrul Date: Fri, 11 Oct 2024 23:33:53 +0800 Subject: [PATCH] added rockspec --- .rockspec | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 .rockspec diff --git a/.rockspec b/.rockspec new file mode 100644 index 0000000..d14399a --- /dev/null +++ b/.rockspec @@ -0,0 +1,21 @@ +package = "luax" +version = "1.0.0" + +source = { + url = "https://github.com/syarul/luax/archive/refs/tags/v1.0.0.tar.gz" +} +description = { + summary = "HTML parse in Lua", + detailed = "Decent parse for HTML, so you don't have to write as concatenates string", + homepage = "https://github.com/syarul/luax", + license = "MIT" +} +dependencies = { + "lua >= 5.1" +} +build = { + type = "builtin", + modules = { + luax = "luax.lua" + } +}