diff options
Diffstat (limited to 'lua_uuid-0.1-7.rockspec')
-rw-r--r-- | lua_uuid-0.1-7.rockspec | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/lua_uuid-0.1-7.rockspec b/lua_uuid-0.1-7.rockspec index e0c12b5..e623d72 100644 --- a/lua_uuid-0.1-7.rockspec +++ b/lua_uuid-0.1-7.rockspec @@ -10,7 +10,7 @@ description = { This is an utility that leverages libuuid to generate UUID strings ]], homepage = "https://github.com/Mashape/lua-uuid", - license = "MIT" + license = "MIT" } dependencies = { "lua >= 5.1" @@ -18,12 +18,13 @@ dependencies = { build = { type = "make", build_variables = { + LUA="$(LUA)", CFLAGS="$(CFLAGS)", LIBFLAG="$(LIBFLAG)", - LUA_LIBDIR="$(LUA_LIBDIR)", - LUA_INCDIR="$(LUA_INCDIR)" + LUA_LIBDIR="-L$(LUA_LIBDIR)", + LUA_INCDIR="-I$(LUA_INCDIR)" }, install_variables = { INST_LIBDIR = "$(LIBDIR)" } -}
\ No newline at end of file +} |