From b8a4b41379165ffc27f1db6e855be86c10805989 Mon Sep 17 00:00:00 2001 From: Simon Cozens Date: Mon, 19 Jul 2021 11:53:40 +0100 Subject: [PATCH] release: 2.3-1 rockspec --- rockspecs/cassowary-2.3-1.rockspec | 30 ++++++++++++++++++++++++++++++ 1 file changed, 30 insertions(+) create mode 100644 rockspecs/cassowary-2.3-1.rockspec diff --git a/rockspecs/cassowary-2.3-1.rockspec b/rockspecs/cassowary-2.3-1.rockspec new file mode 100644 index 0000000..2bdddb2 --- /dev/null +++ b/rockspecs/cassowary-2.3-1.rockspec @@ -0,0 +1,30 @@ +package = "Cassowary" +version = "2.3-1" + +source = { + url = "git://github.com/simoncozens/cassowary.lua", + dir = "cassowary.lua" +} + +description = { + summary = "The cassowary constraint solver.", + detailed = [[ + This is a lua port of the cassowary constraint solving toolkit. + It allows you to use lua to solve algebraic equations and inequalities + and find the values of unknown variables which satisfy those inequalities. + ]], + homepage = "https://github.com/simoncozens/cassowary.lua", + license = "Apache 2" +} + +dependencies = { + "lua", + "penlight" +} + +build = { + type = "builtin", + modules = { + cassowary = "cassowary.lua" + } +}