diff options
author | Marco Palladino <marco@mashape.com> | 2015-11-19 13:38:12 -0800 |
---|---|---|
committer | Marco Palladino <marco@mashape.com> | 2015-11-19 13:38:12 -0800 |
commit | 0f5008269fc8c0b1996351ec71d7be991b160157 (patch) | |
tree | 4f085b107457fa44008fb9d5086747429abd4d05 /lua_uuid-0.1-7.rockspec | |
parent | 54af6a4aecdca9f0b8df5d2425da82b1e31b03d5 (diff) | |
parent | 4467053af8965775921d7212bcee6a095ea5740e (diff) | |
download | lua_uuid-0f5008269fc8c0b1996351ec71d7be991b160157.tar.gz lua_uuid-0f5008269fc8c0b1996351ec71d7be991b160157.tar.bz2 lua_uuid-0f5008269fc8c0b1996351ec71d7be991b160157.zip |
Merge pull request #2 from Mashape/chore/make
Chore/make
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 +} |