From 91faa7b5efa9123c498dcca2333cbd8000f81af1 Mon Sep 17 00:00:00 2001 From: Christine Dodrill Date: Wed, 25 Dec 2019 19:11:15 +0000 Subject: [PATCH] rockspec --- ln-0.2.0-1.rockspec | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 ln-0.2.0-1.rockspec diff --git a/ln-0.2.0-1.rockspec b/ln-0.2.0-1.rockspec new file mode 100644 index 0000000..2f8887c --- /dev/null +++ b/ln-0.2.0-1.rockspec @@ -0,0 +1,21 @@ +package = "ln" +version = "0.2.0-1" +source = { + url = "git+https://tulpa.dev/cadey/lua-ln", + tag = "v0.2.0" +} +description = { + summary = "The natural log function", + homepage = "https://tulpa.dev/cadey/lua-ln", + license = "0bsd" +} +dependencies = { + "lua ~> 5.3", + "dkjson" +} +build = { + type = "builtin", + modules = { + ln = "src/ln.lua" + } +}