diff --git a/consumer-project/.gitignore b/consumer-project/.gitignore new file mode 100644 index 0000000..0771553 --- /dev/null +++ b/consumer-project/.gitignore @@ -0,0 +1,4 @@ +/luarocks +/lua +/lua_modules +/.luarocks diff --git a/consumer-project/consumer-0.1-1.rockspec b/consumer-project/consumer-0.1-1.rockspec new file mode 100644 index 0000000..8f9285b --- /dev/null +++ b/consumer-project/consumer-0.1-1.rockspec @@ -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" + } +} diff --git a/consumer.lua b/consumer-project/consumer.lua similarity index 100% rename from consumer.lua rename to consumer-project/consumer.lua