2012-05-06 19:56:37 +00:00
|
|
|
LUA = lua-5.1.5
|
|
|
|
LUA_TGZ = $(LUA).tar.gz
|
|
|
|
LUA_URL = http://www.lua.org/ftp/$(LUA_TGZ)
|
2013-05-25 12:50:46 +00:00
|
|
|
LUA_SHA = b3882111ad02ecc6b972f8c1241647905cb2e3fc
|
2012-05-06 19:56:37 +00:00
|
|
|
|
|
|
|
#
|
|
|
|
# Interface to top-level prepare Makefile
|
|
|
|
#
|
|
|
|
PORTS += $(LUA)
|
|
|
|
|
|
|
|
LUA_INC_DIR = include/lua
|
|
|
|
|
|
|
|
prepare-lua: $(CONTRIB_DIR)/$(LUA) $(LUA_INC_DIR)
|
|
|
|
|
|
|
|
$(CONTRIB_DIR)/$(LUA): clean-lua
|
|
|
|
|
|
|
|
#
|
|
|
|
# Port-specific local rules
|
|
|
|
#
|
|
|
|
$(DOWNLOAD_DIR)/$(LUA_TGZ):
|
|
|
|
$(VERBOSE)wget -c -P $(DOWNLOAD_DIR) $(LUA_URL) && touch $@
|
2013-06-06 14:49:56 +00:00
|
|
|
|
|
|
|
$(DOWNLOAD_DIR)/$(LUA_TGZ).verified: $(DOWNLOAD_DIR)/$(LUA_TGZ)
|
2013-05-25 12:50:46 +00:00
|
|
|
$(VERBOSE)$(HASHVERIFIER) $(DOWNLOAD_DIR)/$(LUA_TGZ) $(LUA_SHA) sha1
|
2013-06-06 14:49:56 +00:00
|
|
|
$(VERBOSE)touch $@
|
2012-05-06 19:56:37 +00:00
|
|
|
|
2013-06-06 14:49:56 +00:00
|
|
|
$(CONTRIB_DIR)/$(LUA): $(DOWNLOAD_DIR)/$(LUA_TGZ).verified
|
|
|
|
$(VERBOSE)tar xfz $(<:.verified=) -C $(CONTRIB_DIR) && touch $@
|
2012-05-06 19:56:37 +00:00
|
|
|
|
|
|
|
LUA_INCLUDES = lua.h lauxlib.h luaconf.h lualib.h
|
|
|
|
|
|
|
|
$(LUA_INC_DIR):
|
|
|
|
$(VERBOSE)mkdir -p $@
|
|
|
|
$(VERBOSE)for i in $(LUA_INCLUDES); do \
|
|
|
|
ln -sf ../../$(CONTRIB_DIR)/$(LUA)/src/$$i $@; done
|
|
|
|
|
|
|
|
clean-lua:
|
|
|
|
$(VERBOSE)rm -rf $(LUA_INC_DIR)
|
|
|
|
$(VERBOSE)rm -rf $(CONTRIB_DIR)/$(LUA)
|