From fa9fb11a7c3eeb186a17c6d93c5da37eb6929d58 Mon Sep 17 00:00:00 2001 From: aajjbb Date: Sat, 22 Oct 2016 14:52:56 -0200 Subject: [PATCH] adding .rockspec file to generate a luarocks rock --- lain.rockspec | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 lain.rockspec diff --git a/lain.rockspec b/lain.rockspec new file mode 100644 index 0000000..9d5d5e2 --- /dev/null +++ b/lain.rockspec @@ -0,0 +1,22 @@ +package = "lain" +version = "1.0.0" +source = { + url = "https://github.com/copycat-killer/lain", + tag = "v.1.0.0" +} +description = { + summary = "A layoutm widget and utilities library for the Awesome Window Manager", + detailed = [[ + Successor of awesome-vain, this module provides new layouts, a set of widgets and utility functions, in order to improve Awesome usability and configurability. + ]], + homepage = "https://github.com/copycat-killer/lain", + license = "GPL v2" +} +dependencies = { + "lua >= 5.1" +} +supported_platforms = { "linux" } +build = { + type = "builtin", + modules = { lain = "init.lua" }, +} -- 2.39.2