chore(consumer) move it to a project

This commit is contained in:
Aire-One 2022-01-30 14:51:32 +01:00
parent acb833e8e1
commit 5eb06ccafb
3 changed files with 23 additions and 0 deletions

4
consumer-project/.gitignore vendored Normal file
View File

@ -0,0 +1,4 @@
/luarocks
/lua
/lua_modules
/.luarocks

View File

@ -0,0 +1,19 @@
rockspec_format = "3.0"
package = "consumer"
version = "0.1-1"
source = {
url = "*** please add URL for source tarball, zip or repository here ***"
}
description = {
homepage = "*** please enter a project homepage ***",
license = "*** please specify a license ***"
}
dependencies = {
"calculon", -- `./luarocks install ../calculon-0.1-1.rockspec`
}
build = {
type = "builtin",
modules = {
consumer = "consumer.lua"
}
}