From ff30f6a024ceebb0b58d819aaf9561528a1c0990 Mon Sep 17 00:00:00 2001 From: Nooo37 Date: Mon, 29 Mar 2021 20:50:08 +0200 Subject: [PATCH] add rockspec for luarocks --- bling-scm-1.rockspec | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) create mode 100644 bling-scm-1.rockspec diff --git a/bling-scm-1.rockspec b/bling-scm-1.rockspec new file mode 100644 index 0000000..41e642e --- /dev/null +++ b/bling-scm-1.rockspec @@ -0,0 +1,28 @@ +package = "bling" +version = "scm-1" + +source = { + url = "https://github.com/Nooo37/bling", + branch = "master", +} + +description = { + summary = "Utilities for the AwesomeWM", + detailed = [[ + This module extends the Awesome window manager with alternative layouts, + flash focus, tabbing, a simple tiling wallpaper generator, a declarative + wallpaper setter, window swallowing and a playerctl signal. + ]], + homepage = "https://github.com/Nooo37/bling", + license = "MIT", +} + +dependencies = { + "lua >= 5.1", + "awesome >= 4.0", +} + +build = { + type = "builtin", + modules = { bling = "init.lua" }, +}