From 2440dbc926f4189349d3efdc41c3bfa7c77a4dc0 Mon Sep 17 00:00:00 2001 From: Christine Dodrill Date: Wed, 25 Dec 2019 18:27:04 +0000 Subject: [PATCH] add rockspec --- ln-0.1.0-1.rockspec | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 ln-0.1.0-1.rockspec diff --git a/ln-0.1.0-1.rockspec b/ln-0.1.0-1.rockspec new file mode 100644 index 0000000..5ae3537 --- /dev/null +++ b/ln-0.1.0-1.rockspec @@ -0,0 +1,21 @@ +package = "ln" +version = "0.1.0-1" +source = { + url = "git+https://tulpa.dev/cadey/lua-ln", + tag = "v0.1.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" + } +}