aboutsummaryrefslogtreecommitdiff
path: root/lua-nng-master-1.rockspec
diff options
context:
space:
mode:
authorAlexander M Pickering <alex@cogarr.net>2023-05-08 20:22:22 -0500
committerAlexander M Pickering <alex@cogarr.net>2023-05-08 20:22:22 -0500
commit41a2834903c541ff28a647836fda323e06b192a7 (patch)
tree13abf7b8084d95d81b35decc7165e4d0b844168c /lua-nng-master-1.rockspec
parentfddb43101fad2b926efc80409c9d41a9948665ec (diff)
downloadlua-nng-41a2834903c541ff28a647836fda323e06b192a7.tar.gz
lua-nng-41a2834903c541ff28a647836fda323e06b192a7.tar.bz2
lua-nng-41a2834903c541ff28a647836fda323e06b192a7.zip
LD is not actually defined for makefiles
See https://www.gnu.org/software/make/manual/html_node/Implicit-Variables.html
Diffstat (limited to 'lua-nng-master-1.rockspec')
-rw-r--r--lua-nng-master-1.rockspec40
1 files changed, 0 insertions, 40 deletions
diff --git a/lua-nng-master-1.rockspec b/lua-nng-master-1.rockspec
deleted file mode 100644
index 9075cb3..0000000
--- a/lua-nng-master-1.rockspec
+++ /dev/null
@@ -1,40 +0,0 @@
-package = "lua-nng"
-rockspec_format="3.0"
-version = "master-1"
-source = {
- url = "git+https://cogarr.net/source/cgit.cgi/lua-nng",
-}
-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)",
- },
-}