cpu widget rockspec

This commit is contained in:
streetturtle 2020-04-26 20:55:13 -04:00
parent 99501f066d
commit 2defa0d422
3 changed files with 26 additions and 2 deletions

3
.gitignore vendored
View File

@ -4,7 +4,6 @@ luac.out
# luarocks build files
*.src.rock
*.zip
*.tar.gz
# Object files
*.o
@ -40,4 +39,4 @@ luac.out
*.hex
# IDEA files
.idea
.idea

Binary file not shown.

View File

@ -0,0 +1,25 @@
package = "cpu-widget"
version = "0.0.1"
source = {
url = "https://github.com/streetturtle/awesome-wm-widgets/tree/rocks/cpu-widget/cpu-widget-0.0.1.tar.gz",
}
description = {
summary = "CPU widget for Awesome Window Manager",
detailed = [[
CPU widget for Awesome Window Manager.
]],
homepage = "https://github.com/streetturtle/awesome-wm-widgets/tree/master/cpu-widget",
license = "MIT"
}
supported_platforms = {
"linux"
}
dependencies = {
"lua >= 5.2"
}
build = {
type = "builtin",
modules = {
cpu-wodget = "cpu-widget.lua"
}
}