aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlexander Pickering <alex@cogarr.net>2020-09-16 17:24:36 -0400
committerAlexander Pickering <alex@cogarr.net>2020-09-16 17:24:36 -0400
commit7a80bf02bd93980d98613aaef1e9138d06dcf60c (patch)
tree738fd3f573560d65cbbf1169b877a5bca0e7f4e0
parent41ef510ce2fbaa25d8808250f00966baf0cb9b12 (diff)
downloadlua-nng-7a80bf02bd93980d98613aaef1e9138d06dcf60c.tar.gz
lua-nng-7a80bf02bd93980d98613aaef1e9138d06dcf60c.tar.bz2
lua-nng-7a80bf02bd93980d98613aaef1e9138d06dcf60c.zip
Remove old rockspec
Remove an old rockspec file that is no longer needed.
-rw-r--r--lua-nng.rockspec41
1 files changed, 0 insertions, 41 deletions
diff --git a/lua-nng.rockspec b/lua-nng.rockspec
deleted file mode 100644
index 42d1e29..0000000
--- a/lua-nng.rockspec
+++ /dev/null
@@ -1,41 +0,0 @@
-package = "lua-nng"
-rockspec_format="3.0"
-version = "2020.9.15"
-source = {
- url = "git+https://cogarr.net/source/cgit.cgi/lua-nng",
- --tag = "v0.1"
-}
-description = {
- summary = "A simple binding for Nanomessage Next Generation",
- homepage = "https://cogarr.net/source/cgit.cgi/lua-nng/about",
- license = "BSD/2 Clause",
- maintainer = "Alexander Pickering <alex@cogarr.net>",
- labels = {"network","nanomessage","nng"}
-}
-external_dependencies = {
- NNG = {
- library = "nng",
- header = "nng/nng.h"
- }
-}
-build = {
- type = "make",
- build_variables = {
- CFLAGS="$(CFLAGS)",
- LUA_INCDIR="$(LUA_INCDIR)",
- LUA_LIBDIR="$(LUA_LIBDIR)",
- NNG_INCDIR="$(NNG_INCDIR)",
- NNG_LIBDIR="$(NNG_LIBDIR)",
- FIND="$(FIND)",
- LIB_EXTENSION="$(LIB_EXTENSION)",
- LIBFLAG="$(LIBFLAG)",
- },
- install_variables = {
- INST_PREFIX="$(PREFIX)",
- INST_LIBDIR="$(LIBDIR)",
- NNG_LIBDIR="$(NNG_LIBDIR)",
- LUA_LIBDIR="$(LUA_LIBDIR)",
- LIB_EXTENSION="$(LIB_EXTENSION)",
- CP="$(CP)",
- },
-}